mirror of
https://github.com/fauxpilot/fauxpilot.git
synced 2025-08-21 05:44:09 -07:00
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:
parent
9c0f35e3c7
commit
927be7b730
1 changed files with 1 additions and 1 deletions
2
setup.sh
2
setup.sh
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if [ -f config.env ]; then
|
||||
echo "config.env already exists, skipping"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue