mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
11 lines
205 B
Bash
Executable file
11 lines
205 B
Bash
Executable file
#! /bin/sh
|
|
base=`dirname "$0"`
|
|
roboCommand="$1"
|
|
shift
|
|
|
|
ulimit -n 2048
|
|
if [ "$1" = "clean" ]; then
|
|
"$base/vendor/bin/robo" "$roboCommand" "$@"
|
|
else
|
|
"$base/vendor/bin/robo" "$roboCommand" -- "$@"
|
|
fi
|