Skip to content

Commit 8b5f054

Browse files
committed
process_tracker_python-46 TravisCI Fails on Tagged Build
Needed to flip the test from -z "$DB" to ! -z "$DB" Closes #46
1 parent 10d99ec commit 8b5f054

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ after_success:
1313
- coveralls
1414
before_script:
1515
- mkdir $HOME/.process_tracker
16-
- if [[ -z "$DB" ]]; then mv configs/${DB}_config.ini $HOME/.process_tracker/process_tracker_config.ini; fi
16+
- if [[ ! -z "$DB" ]]; then mv configs/${DB}_config.ini $HOME/.process_tracker/process_tracker_config.ini; fi
1717
- if [[ "$DB" == "postgres" ]]; then psql -f dbscripts/postgresql_account_create.sql -U postgres; fi
1818
- if [[ "$DB" == "postgres" ]]; then psql -f dbscripts/postgresql_process_tracker.sql process_tracker -U postgres; fi
1919
- if [[ "$DB" == "postgres" ]]; then psql -f dbscripts/postgresql_process_tracker_defaults.sql process_tracker -U postgres; fi

0 commit comments

Comments
 (0)