Revision 4,
331 bytes
checked in by ajaworski, 13 years ago
(diff) |
Added modified SAGE sources
|
-
Property svn:executable set to
*
|
Rev | Line | |
---|
[4] | 1 | #!/bin/sh |
---|
| 2 | |
---|
| 3 | cd $SAGE_DIRECTORY/bin |
---|
| 4 | |
---|
| 5 | # Use the 2.4 version of python if running in Rocks environment |
---|
| 6 | PYTHONEXE=python |
---|
| 7 | [ -x /opt/rocks/bin/python ] && PYTHONEXE=/opt/rocks/bin/python |
---|
| 8 | |
---|
| 9 | # run sageLauncher differently if linux or if macos |
---|
| 10 | if [ `uname` = "Linux" ] |
---|
| 11 | then |
---|
| 12 | $PYTHONEXE sageLauncher.py |
---|
| 13 | else |
---|
| 14 | pythonw sageLauncher.py |
---|
| 15 | fi |
---|
| 16 | |
---|
Note: See
TracBrowser
for help on using the repository browser.