Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2005-10-14 01:45:18 +0400
committerYann Leboulanger <asterix@lagaule.org>2005-10-14 01:45:18 +0400
commit9993b650228528ef595fb78244a053edb67213eb (patch)
treef722793bd09904d6a8dbb78a73e8c74eba022904 /launch.sh
parent8ab275e87e44440b18b5d234e1ba8be8f7a72d2b (diff)
launch.sh can be launched from anywhere and process is called gajim in ps
Diffstat (limited to 'launch.sh')
-rwxr-xr-xlaunch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/launch.sh b/launch.sh
index 7f51a6aee..a048599f9 100755
--- a/launch.sh
+++ b/launch.sh
@@ -1,3 +1,3 @@
#!/bin/sh
-cd src
-exec python -OOt gajim.py $@
+cd `dirname $0`/src
+exec -a gajim python -OOt gajim.py $@