add ui [folder|file]

This commit is contained in:
j 2014-05-16 17:48:48 +02:00
commit f134f1ff62
2 changed files with 87 additions and 0 deletions

5
ctl
View file

@ -73,6 +73,11 @@ if [ "$1" == "open" ]; then
fi
exit 0
fi
if [ "$1" == "ui" ]; then
shift
python2 $NAME/oml/ui.py $@
exit $?
fi
cd $BASE/$NAME
python2 oml $@