config/proc.sh in traquitana-2.0.2 vs config/proc.sh in traquitana-2.0.3
- old
+ new
@@ -200,10 +200,11 @@
local version=$(bundle -v | grep -o -e "[0-9]\+\.[0-9]\+\.[0-9]\+" | cut -d'.' -f1)
msg "Performing a \e[1mlocal gem install on vendor/bundle with bundler version $version\e[0m"
# bundler version 2 doesnt have anymore those flags below
if [ $version -ge 2 ]; then
- bundle config --local set path 'vendor/bundle' without 'development test'
+ bundle config set --local path 'vendor/bundle'
+ bundle config set --local without 'development test'
bundle install
else
bundle install --path vendor/bundle --without development test
fi
fi