diff options
author | jfederico <jesus@123it.ca> | 2020-02-14 16:07:50 -0500 |
---|---|---|
committer | jfederico <jesus@123it.ca> | 2020-02-14 16:07:50 -0500 |
commit | a967d6791a606a653e61769586417e940a979016 (patch) | |
tree | 971094af9e06009ca20722a750f980a6adbe85c8 /scripts/build.sh | |
parent | fefe0b489d6235482265456805c1312e079661ad (diff) | |
download | scalelite-run-itzks-a967d6791a606a653e61769586417e940a979016.tar.gz scalelite-run-itzks-a967d6791a606a653e61769586417e940a979016.tar.bz2 scalelite-run-itzks-a967d6791a606a653e61769586417e940a979016.zip |
Removed script for appending sqlite to Gemfile
Diffstat (limited to 'scripts/build.sh')
-rwxr-xr-x | scripts/build.sh | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index 1da51e9..66f9613 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -55,13 +55,6 @@ if [ "$CD_REF_NAME" != "master" ] && [[ "$CD_REF_NAME" != *"release"* ]] && ( [ exit 0 fi -# Include sqlite for production -sqliteCount="$(grep "gem 'sqlite3'" Gemfile | wc -l)" - -if [ $sqliteCount -lt 2 ]; then - sed -i "/^group :production do/a\ \ gem 'sqlite3', '~> 1.3.6'" Gemfile -fi - # Set the version tag when it is a release or the commit sha was included. if [[ "$CD_REF_NAME" == *"v"* ]]; then export CD_BUILD_NUMBER=${CD_REF_NAME:1} |