mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-02 07:00:42 +00:00
Rename to match case
This commit is contained in:
parent
c63d466fd0
commit
d1cf029deb
1 changed files with 3 additions and 3 deletions
|
@ -1337,9 +1337,9 @@ class output_window(Text):
|
|||
self.insert('end', 'Unable to move board definition file to destination. User must manually copy the file.\n\n', 'error')
|
||||
self.insert('end', 'Please copy the following file and re-run the script:\n', 'normal')
|
||||
self.insert('end', ' FROM:\n')
|
||||
self.insert('end', ' ' + pwd + '/' + board_path + '/at90USB1286.json\n')
|
||||
self.insert('end', ' ' + pwd + '/' + board_path + '/at90usb1286.json\n')
|
||||
self.insert('end', ' TO:\n')
|
||||
self.insert('end', ' ' + PIO_path + '/at90USB1286.json\n')
|
||||
self.insert('end', ' ' + PIO_path + '/at90usb1286.json\n')
|
||||
|
||||
|
||||
|
||||
|
@ -1405,7 +1405,7 @@ class output_window(Text):
|
|||
except:
|
||||
self.report_failure(PIO_path, board_path)
|
||||
return False
|
||||
if 'at90USB1286.json' in boards_dir:
|
||||
if 'at90usb1286.json' in boards_dir:
|
||||
return True # it's there so all is well
|
||||
self.report_failure(PIO_path, board_path)
|
||||
return False
|
||||
|
|
Loading…
Reference in a new issue