commit af818b134f81cb25fbc6bd1c969c39f7920500ef parent 90c51bf854d93d9564bdc3db94c8104556c75ea4 Author: Sebastiano Tronto <sebastiano@tronto.net> Date: Tue, 16 Apr 2024 14:03:02 +0200 minor fix Diffstat:
M | alg | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/alg b/alg @@ -245,6 +245,6 @@ if [ -n "$1" ]; then run $@ else while read -r args; do - run $args + [ -n "$args" ] && run $args done fi