1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2025-12-17 11:30:19 +01:00
Files
pygtktalog/pyGTKtalog
gryf bc4f329d15 * Added details MVC files.
* Change of katalog file organization.
 * Small bugfixes.
 * Code clean up.
 * Added README file.
2008-03-24 09:15:05 +00:00

12 lines
367 B
Bash
Executable File

#!/bin/sh
# Simple wraper to launch python application from desired place.
# adjust to your needs:
data_dir="/home/gryf/Devel/Python/pyGTKtalog"
python_intrpreter="/usr/bin/python"
# don't change anything below.
current_dir="`pwd`"
cd $data_dir
#exec $python_intrpreter -OO pygtktalog.py "$current_dir" "$@"
exec $python_intrpreter pygtktalog.py "$current_dir" "$@"