mirror of
https://github.com/clockworkpi/launcher.git
synced 2025-12-12 17:58:50 +01:00
19 lines
215 B
Bash
Executable File
19 lines
215 B
Bash
Executable File
#!/bin/bash
|
|
|
|
BASENAME=`dirname "$0"`
|
|
|
|
cd $BASENAME/sys.py
|
|
|
|
if [ ! -f ~/.apps_menu_updated ]
|
|
then
|
|
cd ~/apps/Menu && git pull origin gcores
|
|
if [ $? -eq 0 ]; then
|
|
touch ~/.apps_menu_updated
|
|
fi
|
|
cd -
|
|
fi
|
|
|
|
python run.py
|
|
|
|
|