mirror of
https://github.com/chenasraf/snpr.git
synced 2026-05-18 01:39:01 +00:00
12 lines
211 B
Bash
Executable File
12 lines
211 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
TMP_PATH='/tmp/recommendify-bundle'
|
|
|
|
recommendiy_path=$(bundle show recommendify)
|
|
cd $recommendiy_path
|
|
bundle install --path $TMP_PATH
|
|
bundle exec rake build_native
|
|
rm -rf $TMP_PATH
|