fix: added shebang in the setup.sh

This commit is trivial. It is to append the shebang in the setup.sh file. 

It is not always the case that /bin/bash is the path to the Bash shell.
It is only a different path in extremely rare instances, so it is typically irrelevant.
This commit is to specify the Bash shell (i.e., bash) using the environment variable.

Signed-off-by: Geunsik Lim <leemgs@gmail.com>
This commit is contained in:
Geunsik Lim 2022-09-15 09:14:24 +09:00 committed by GitHub
commit 927be7b730
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
if [ -f config.env ]; then if [ -f config.env ]; then
echo "config.env already exists, skipping" echo "config.env already exists, skipping"