Skip to content

Commit

Permalink
Return, not exit.
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Jan 22, 2019
1 parent 0ba9169 commit 4f0d86e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dev/linux-mysql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

if [ ${MYSQL:=system} = 'system' ]; then
exit
return
fi

# Derived from https://github.com/PyMySQL/PyMySQL/blob/master/.travis/initializedb.sh
Expand Down
2 changes: 1 addition & 1 deletion dev/linux-postgres
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

if [ ${POSTGRES:=system} = 'system' ]; then
exit
return
fi

# Derived from https://gist.github.com/petere/6023944
Expand Down
2 changes: 1 addition & 1 deletion dev/linux-sqlite
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

if [[ ${SQLITE:=system} = 'system' ]]; then
exit
return
fi

DIR=$(pwd)
Expand Down

0 comments on commit 4f0d86e

Please sign in to comment.