Skip to content

Commit

Permalink
drop semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
mxfactorial committed May 14, 2023
1 parent 84e0b56 commit faa34ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/start-local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ for d in "${APP_DIRS[@]}"; do
fi
if [[ "$RUNTIME" == 'go1.x' ]]; then
echo -e -n "\n${GREEN}*** starting $d${RESET}\n"
(cd "$d"; eval $(cat $ENV_FILE_NAME) go run ./$BUILD_SRC_PATH > /dev/null 2>&1 &; disown)
(cd "$d"; eval $(cat $ENV_FILE_NAME) go run ./$BUILD_SRC_PATH > /dev/null 2>&1 & disown $!)
fi
make list-pids
else
Expand Down
1 change: 1 addition & 0 deletions test/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,4 @@ get-secrets:
bash scripts/create-env-file.sh \
--app-name $(APP_NAME) \
--env $(ENV)

0 comments on commit faa34ff

Please sign in to comment.