From 12603de3d9b1c2df8e147ed04db822709068c098 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 8 Dec 2011 22:07:54 +0100 Subject: [PATCH] patch: Fix weird problem with multiple arguments. --- scripts/patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/patch b/scripts/patch index 6c4e9aa3d..dd8f2b9a2 100755 --- a/scripts/patch +++ b/scripts/patch @@ -1,7 +1,7 @@ #!/bin/bash # Script that automatically applies patches. -if [ -n "$@" ]; then +if [ -n "${1}" ]; then echo "Applying patches..." fi -- 2.39.5