Skip to content

Commit

Permalink
Correct log file path from data/log to log
Browse files Browse the repository at this point in the history
  • Loading branch information
ngiger committed Mar 2, 2024
1 parent 97e7e17 commit d1e9531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/workdir.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module ODDB

# values differ for tests and application
EXPORT_DIR = File.join(WORK_DIR, 'downloads')
LOG_DIR = File.join(WORK_DIR, 'log')
LOG_DIR = File.expand_path(File.join(WORK_DIR, '../log'))
CSV_DIR = File.join(WORK_DIR, 'csv')
XML_DIR = File.join(WORK_DIR, 'xml')

Expand Down

0 comments on commit d1e9531

Please sign in to comment.