1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00

Increase file descriptor limit for Robo on Linux

This commit is contained in:
J. King 2019-03-24 14:41:17 -04:00
parent 94314f3e6d
commit 5bf0b67ec3

3
robo
View file

@ -1,8 +1,9 @@
#! /bin/sh #! /bin/sh
base=`dirname "$0"` base=`dirname "$0"`
roboCommand="$1" roboCommand="$1"
shift shift
ulimit -n 2048
if [ "$1" = "clean" ]; then if [ "$1" = "clean" ]; then
"$base/vendor/bin/robo" "$roboCommand" $* "$base/vendor/bin/robo" "$roboCommand" $*
else else