* Added support for Ruby v2 Specialization * Added ruby v2 example with builder code
9 lines
145 B
Bash
Executable File
9 lines
145 B
Bash
Executable File
#!/bin/sh
|
|
set -euxo pipefail
|
|
|
|
if [ -f ${SRC_PKG}/Gemfile.lock ]
|
|
then
|
|
cd $SRC_PKG
|
|
bundle install --deployment
|
|
fi
|
|
cp -r ${SRC_PKG} ${DEPLOY_PKG} |