This fixes the problem that we can't get the python path using

sys.executable.
This commit is contained in:
js 2008-08-14 14:02:18 +00:00
parent 34d7aacdf8
commit f15ec68ae9
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
if [[ $0 == /* ]]; then
BASE=`dirname $0`
else
@ -15,4 +15,4 @@ if [ "x${OS}" == "xDarwin" ]; then
fi
cd ${BASE}/src
exec -a gajim python -t gajim.py $@
exec python2.5 -t gajim.py $@