From: Youness Alaoui Date: Tue, 26 Jan 2016 18:05:02 +0000 (-0500) Subject: Fix the dev-cura script X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;ds=sidebyside;h=a610f548f67874381912e827e7e581f9fb79fb23;p=cura.git 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. --- 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 "$@"