Add the setup-run-from-source.sh script (doesn't work yet) and allow to run the cactivities from the shell.

This commit is contained in:
Dan Williams 2006-04-27 13:54:18 -04:00
parent c4781fe8e3
commit 73ac3be1e6
3 changed files with 10 additions and 0 deletions

View File

@ -264,3 +264,6 @@ def main():
gtk.main()
except KeyboardInterrupt:
pass
if __name__=="__main__":
main()

4
setup-run-from-source.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
# for activity.py
export PYTHON_PATH=`pwd`/shell/src/

View File

@ -300,3 +300,6 @@ def main():
gtk.main()
except KeyboardInterrupt:
pass
if __name__=="__main__":
main()