From dcd01caab91ae22b5d2adcfdae26e5cae172e749 Mon Sep 17 00:00:00 2001 From: Scott Lahteine <github@thinkyhead.com> Date: Tue, 4 Sep 2018 00:47:55 -0500 Subject: [PATCH] Rename to match case --- buildroot/share/atom/auto_build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buildroot/share/atom/auto_build.py b/buildroot/share/atom/auto_build.py index 0934455b48..d9f5111325 100644 --- a/buildroot/share/atom/auto_build.py +++ b/buildroot/share/atom/auto_build.py @@ -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