fix #5967 chore(project): set shell in makefile (#5968)

Because

* The makefile depends on /bin/bash to run correctly
* That is not the default on all environments

This commit

* Explicitly sets SHELL = /bin/bash in the Makefile
This commit is contained in:
Jared Lockhart 2021-07-15 13:47:16 -04:00 коммит произвёл GitHub
Родитель 4457d316c3
Коммит 9ab249afe4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,5 @@
SHELL = /bin/bash
WAIT_FOR_DB = /app/bin/wait-for-it.sh -t 30 db:5432 &&
WAIT_FOR_RUNSERVER = /app/bin/wait-for-it.sh -t 30 localhost:7001 &&