From 17f7c039214e4d73540f4dc24807b13d48755d73 Mon Sep 17 00:00:00 2001 From: JamesH1978 <87171443+JamesH1978@users.noreply.github.com> Date: Thu, 9 Feb 2023 16:44:30 +0000 Subject: [PATCH] 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 --- scripts/update_mks_robin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update_mks_robin.py b/scripts/update_mks_robin.py index 0500492d0..fab9faa1e 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