Skip to content

Commit

Permalink
Merge pull request #30 from viseztrance/handle-case-sensitive-file-sy…
Browse files Browse the repository at this point in the history
…stems

Fix exception on case sensitive file systems.

Thanks, somehow I missed this.
  • Loading branch information
bitwes authored Aug 3, 2017
2 parents 520d363 + d18f801 commit 1c23349
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/gut/gut.gd
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const PAUSE_MESSAGE = '/# Pausing. Press continue button...#/'
var _is_running = false
var _stop_pressed = false

var _signal_watcher = load('res://addons/Gut/signal_watcher.gd').new()
var _signal_watcher = load('res://addons/gut/signal_watcher.gd').new()
# Tests to run for the current script
var _tests = []
# all the scripts that should be ran as test scripts
Expand Down
2 changes: 1 addition & 1 deletion addons/gut/gut_cmdln.gd
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ func setup_options():
'with the GUI.'))
opts.add('-gunit_test_name', '', ('Name of a test to run. Any test that contains the specified ' +
'text will be run, all others will be skipped.'))
opts.add('-gutloc', 'res://addons/Gut/gut.gd', 'Full path (including name) of the gut script. Default [default]')
opts.add('-gutloc', 'res://addons/gut/gut.gd', 'Full path (including name) of the gut script. Default [default]')
opts.add('-gh', false, 'Print this help')
return opts

Expand Down

0 comments on commit 1c23349

Please sign in to comment.