Changed to bash shell

This commit is contained in:
2022-07-11 13:46:36 +02:00
parent 2794f9277d
commit 3532070f31

View File

@@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
# e is for exiting the script automatically if a command fails, u is for exiting if a variable is not set # e is for exiting the script automatically if a command fails, u is for exiting if a variable is not set
# x would be for showing the commands before they are executed # x would be for showing the commands before they are executed
set -eux set -eux
@@ -29,8 +29,7 @@ cd $INPUT_PROJECT_PATH
python3 manage.py graph_models -a -g -o $INPUT_OUTPUT_PATH python3 manage.py graph_models -a -g -o $INPUT_OUTPUT_PATH
# To keep runtime good, just continue if something was changed # To keep runtime good, just continue if something was changed
if [[ `$(git status -s)` ]]; if [[ `git status --porcelain` ]]; then
then
# Calling method to configure the git environemnt # Calling method to configure the git environemnt
_git_setup _git_setup
# Commit and push changes back # Commit and push changes back