1
0
Fork 0
mirror of https://github.com/YunoHost/ynh-dev.git synced 2024-09-03 20:05:59 +02:00

Fix bashism in deploy command.

This commit is contained in:
opi 2016-04-27 12:22:14 +02:00
parent 4090eae816
commit f4569111e6

View file

@ -161,7 +161,7 @@ elif [ "$1" = "deploy" ]; then
cd $BASE_DIR/moulinette
./setup.py install
cd ..
[-e "./cache/moulinette/actionsmap/yunohost.pkl"] && rm /var/cache/moulinette/actionsmap/yunohost.pkl
[ -e "./cache/moulinette/actionsmap/yunohost.pkl" ] && rm /var/cache/moulinette/actionsmap/yunohost.pkl
echo "moulinette deployed"
;;
ssowat)