FIX: perform bundle install after modifying directory permissions (#504)
authorArpit Jalan <arpit@techapj.com>
Wed, 16 Dec 2020 18:22:47 +0000 (23:52 +0530)
committerGitHub <noreply@github.com>
Wed, 16 Dec 2020 18:22:47 +0000 (23:52 +0530)
image/discourse_dev/postgres_dev.template.yml

index 1742fdb214ec02b820027e4a03c474dc5d163e55..74c82c40fb7deb8d8423e48e5e80e3c582fbaa26 100644 (file)
@@ -41,8 +41,9 @@ run:
   - exec: su postgres -c 'psql discourse_test_multisite -c "create extension if not exists hstore;"'
   - exec: su postgres -c 'psql discourse_test_multisite -c "create extension if not exists pg_trgm;"'
 
-  - exec: cd tmp && git clone https://github.com/discourse/discourse.git --depth=1 && cd /tmp/discourse && sudo -u discourse bundle install
+  - exec: cd tmp && git clone https://github.com/discourse/discourse.git --depth=1
   - exec: chown -R discourse /tmp/discourse
+  - exec: cd /tmp/discourse && sudo -u discourse bundle install
   - exec: cd /tmp/discourse && sudo -u discourse bundle exec rake db:migrate
   - exec: cd /tmp/discourse && sudo -u discourse RAILS_ENV=test bundle exec rake db:migrate
   - exec: rm -fr /tmp/discourse