diff options
author | JamesH1978 <87171443+JamesH1978@users.noreply.github.com> | 2023-02-09 16:44:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 11:44:30 -0500 |
commit | 17f7c039214e4d73540f4dc24807b13d48755d73 (patch) | |
tree | 1eb741a48d0ffe5d616d23f24849948ebea0d55b | |
parent | ae9169c4c35acd2a3c052c2667469b4c0674e947 (diff) | |
download | kutter-17f7c039214e4d73540f4dc24807b13d48755d73.tar.gz kutter-17f7c039214e4d73540f4dc24807b13d48755d73.tar.xz kutter-17f7c039214e4d73540f4dc24807b13d48755d73.zip |
scripts: update_mks_robin.py python env version (#6043)
The recent PR to change this to say `#!/usr/bin/env python` instead of `#!/usr/bin/env python2` can cause issues on non rpi based OS's where `python` is not mapped to `python3`.
`#!/usr/bin/env python3` should work in both situations.
Signed-off-by: James Hartley <james@hartleyns.com>
-rwxr-xr-x | scripts/update_mks_robin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update_mks_robin.py b/scripts/update_mks_robin.py index 0500492d..fab9faa1 100755 --- a/scripts/update_mks_robin.py +++ b/scripts/update_mks_robin.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Script to update firmware for MKS Robin bootloader # # Copyright (C) 2020 Kevin O'Connor <kevin@koconnor.net> |