mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
12 lines
302 B
Bash
12 lines
302 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -evx
|
||
|
|
||
|
# Set GEM_HOME and GEM_PATH to verify our appbundle inspec shim is correctly
|
||
|
# removing them from the environment while launching from our embedded ruby.
|
||
|
export GEM_HOME=/SHOULD_NOT_EXIST
|
||
|
export GEM_PATH=/SHOULD_NOT_EXIST
|
||
|
|
||
|
export PATH=$PATH:/usr/local/bin
|
||
|
inspec version
|