13 lines
139 B
Bash
13 lines
139 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# find root
|
||
|
cd `dirname $PWD/$0` ; cd ..
|
||
|
|
||
|
run() {
|
||
|
[ ! -x sys/.mark_$1 ] && sys/$1.sh
|
||
|
}
|
||
|
|
||
|
run install
|
||
|
run python-deps
|
||
|
run python
|