mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
711f87aad8
- Update Docopt - Switch toin-house Picofeed branch for now - Update composer-bin - Update php-cs-fixer Daux has been left as-is for now even though we're using an old version
14 lines
338 B
Bash
Executable file
14 lines
338 B
Bash
Executable file
#! /bin/sh
|
|
base=`dirname "$0"`
|
|
roboCommand="$1"
|
|
if [ $# -eq 0 ]; then
|
|
"$base/vendor-bin/robo/vendor/bin/robo"
|
|
else
|
|
shift
|
|
ulimit -n 2048
|
|
if [ "$1" = "clean" ]; then
|
|
"$base/vendor-bin/robo/vendor/bin/robo" "$roboCommand" "$@"
|
|
else
|
|
"$base/vendor-bin/robo/vendor/bin/robo" "$roboCommand" -- "$@"
|
|
fi
|
|
fi
|