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