Skip to content

Commit 0911486

Browse files
author
Alex Meadows
committed
process_tracker_python-100 Add source/source object character set
🐛 Fixed issue where file path for config file was not setting correctly Issue was found where if the config file was named anything but 'process_tracker_config.ini' it would try to append that to the end. Have added a new filter to ensure that any file that ends with '.ini' can be accepted.
1 parent 2731572 commit 0911486

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ after_success:
1414
before_script:
1515
- mkdir $HOME/.process_tracker
1616
- if [[ ! -z "$DB" ]]; then mv configs/${DB}_config.ini $HOME/.process_tracker/process_tracker_config.ini; fi
17-
- mv configs/process_tracker_config_dev.ini $HOME/.process_tracker/process_tracker_config_dev.ini
17+
- cp configs/process_tracker_config_dev.ini $HOME/.process_tracker/process_tracker_config_dev.ini
18+
- cp configs/process_tracker_config_dev.ini /tmp/testing/process_tracker_config_dev.ini
1819
- if [[ "$DB" == "postgres" ]]; then psql -f dbscripts/postgresql_account_create.sql -U postgres; fi
1920
- if [[ "$DB" == "postgres" ]]; then psql -f dbscripts/postgresql_process_tracker.sql process_tracker -U postgres; fi
2021
- if [[ "$DB" == "postgres" ]]; then psql -f dbscripts/postgresql_process_tracker_defaults.sql process_tracker -U postgres; fi

0 commit comments

Comments
 (0)