mirror of
https://github.com/inspec/inspec
synced 2025-02-18 06:58:40 +00:00
14 lines
247 B
Bash
Executable file
14 lines
247 B
Bash
Executable file
#!/bin/bash
|
|
|
|
exit 0 # don't do this quite yet...
|
|
|
|
set -ue
|
|
|
|
echo "--- bundle install"
|
|
|
|
cd www
|
|
bundle config set --local without tools maintenance deploy
|
|
bundle install --jobs=7 --retry=3
|
|
|
|
echo "+++ bundle exec rake"
|
|
bundle exec rake www V=1 PUSH=1
|