From a610f548f67874381912e827e7e581f9fb79fb23 Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Tue, 26 Jan 2016 13:05:02 -0500 Subject: [PATCH] Fix the dev-cura script The shebang needs to be the first line of the script. Use python instead of /usr/bin/python Do not override PYTHONPATH, just add the current dir to it. --- dev-cura | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-cura b/dev-cura index 22133cf9..9cd99f46 100755 --- a/dev-cura +++ b/dev-cura @@ -1,3 +1,3 @@ -## cura #!/bin/sh -PYTHONPATH=. /usr/bin/python ./scripts/linux/cura.py "$@" +## cura +PYTHONPATH=$PYTHONPATH:. python ./scripts/linux/cura.py "$@" -- 2.30.2