Skip to content

Commit a0e60c9

Browse files
authored
Merge pull request rails#54648 from yahonda/build_databases_at_devcontainer
Create PostgreSQL and MySQL databases at devcontainer
2 parents 271dbd5 + 640f5a0 commit a0e60c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.devcontainer/boot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if [ -n "${NVM_DIR}" ]; then
88
yarn install
99
fi
1010

11-
cd activerecord || echo "activerecord directory doesn't exist" && exit
11+
cd activerecord || { echo "activerecord directory doesn't exist"; exit; }
1212

1313
# Create PostgreSQL databases
1414
bundle exec rake db:postgresql:rebuild

0 commit comments

Comments
 (0)