mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
13 lines
210 B
Bash
13 lines
210 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
echo "STARTING PROVISIONER"
|
||
|
|
||
|
export PATH=/opt/inspec/embedded/bin:$PATH
|
||
|
cd /inspec
|
||
|
gem install bundler
|
||
|
bundle install
|
||
|
gem build inspec
|
||
|
gem install ./inspec-*.gem
|
||
|
|
||
|
echo "ENDING PROVISIONER"
|