1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-24 12:00:33 +00:00
Arsse/robo

12 lines
205 B
Text
Raw Normal View History

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