Renamed some directories

This commit is contained in:
bjschuma 2010-02-17 21:17:42 -05:00
parent 6fba352109
commit 551764de64
33 changed files with 6 additions and 8 deletions

View File

@ -1,2 +0,0 @@
#__all__ = ["bt"]

View File

@ -132,7 +132,7 @@ write("Setting default values...", True)
# Find who is running the program
user = os.path.expanduser("~")
set("USER", user)
set("PLUGPATH", ["core", "extra"])
set("PLUGPATH", ["plugins", "extra"])
# Find out what platform we are running on
set("ARCH", sys.platform)

View File

@ -1,2 +1,2 @@
cat base/*.py base/bt/*.py core/*.py core/cline/*.py extra/*.py extra/guiGTK/*.py | grep -v [[:space:]]*# | cat -b
cat core/*.py core/bt/*.py plugins/*.py plugins/cline/*.py extra/*.py extra/guiGTK/*.py | grep -v [[:space:]]*# | cat -b

View File

@ -1,14 +1,14 @@
#!/bin/bash
mkdir /opt/scion
rsync -avz --progress base /opt/scion/
rsync -avz --progress core /opt/scion/
rsync -avz --progress core /opt/scion/
rsync -avz --progress plugins /opt/scion/
rsync -avz --progress extra /opt/scion/
FILE="/usr/bin/scion"
touch $FILE
echo "#!/bin/bash" > $FILE
echo "cd /opt/scion/base && \`which python\` scion.py \$*" >> $FILE
echo "cd /opt/scion/core && \`which python\` scion.py \$*" >> $FILE
chmod +x $FILE

View File

@ -1,4 +1,4 @@
#!/bin/bash
# This is a simple shell script for properly starting scio
`which python` base/scion.py $*
`which python` core/scion.py $*