10 lines
No EOL
186 B
Bash
10 lines
No EOL
186 B
Bash
#! /bin/sh
|
|
base=`dirname "$0"`
|
|
roboCommand="$1"
|
|
|
|
shift
|
|
if [ "$1" == "clean" ]; then
|
|
"$base/vendor/bin/robo" "$roboCommand" $*
|
|
else
|
|
"$base/vendor/bin/robo" "$roboCommand" -- $*
|
|
fi |