Skip to content

Commit d210ede

Browse files
committed
tweak order of bundle installations
1 parent 7af4b02 commit d210ede

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.gitpod.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,20 @@ ports:
66
tasks:
77
- init: >
88
export CHROME_BIN=/usr/bin/chromium-browser &&
9-
gem install bundler &&
10-
bundle config set without 'production' &&
11-
bundle install &&
9+
# gem install bundler &&
10+
# bundle config set without 'production' &&
11+
# bundle install &&
1212
cp config/database.yml.gitpod config/database.yml &&
1313
mysql -e "SET @@global.sql_mode=(SELECT REPLACE(@@global.sql_mode, 'ONLY_FULL_GROUP_BY', ''));" &&
1414
mysql -e "CREATE DATABASE plots;" &&
1515
cp db/schema.rb.example db/schema.rb
1616
17+
gem install bundler
18+
19+
bundle config set without 'production'
20+
21+
bundle install
22+
1723
rake db:setup
1824
1925
yarn install

0 commit comments

Comments
 (0)