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