1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00
Arsse/robo

12 lines
201 B
Text
Raw Normal View History

2017-12-08 20:15:20 +00:00
#! /bin/sh
base=`dirname "$0"`
roboCommand="$1"
shift
ulimit -n 2048
2019-03-21 02:25:00 +00:00
if [ "$1" = "clean" ]; then
2017-12-20 03:19:34 +00:00
"$base/vendor/bin/robo" "$roboCommand" $*
else
"$base/vendor/bin/robo" "$roboCommand" -- $*
2019-03-21 02:25:00 +00:00
fi