mirror of
https://github.com/inspec/inspec
synced 2024-12-11 05:42:37 +00:00
14 lines
223 B
Bash
14 lines
223 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
exit 0 # don't do this quite yet...
|
||
|
|
||
|
set -ue
|
||
|
|
||
|
echo "--- bundle install"
|
||
|
|
||
|
cd www
|
||
|
bundle install --jobs=7 --retry=3 --without tools maintenance deploy
|
||
|
|
||
|
echo "+++ bundle exec rake"
|
||
|
bundle exec rake www V=1 PUSH=1
|