From 41b2d257c71f654dd2fd9921d1f75f44b97a6592 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Andr=C3=A9e?= Date: Sun, 19 Aug 2012 18:04:05 +0200 Subject: [PATCH] fix for issue #70 --- ponysay | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ponysay b/ponysay index 9936faed..e08fb1ed 100755 --- a/ponysay +++ b/ponysay @@ -268,7 +268,7 @@ fi # Pony not a file? Search for it -if [ ! -f $pony ]; then +if [ ! -f "$pony" ]; then ponies=() [ -d $SYSTEMPONIES ] && ponies+=( "$SYSTEMPONIES"/$pony.pony ) [ -d $HOMEPONIES ] && ponies+=( "$HOMEPONIES"/$pony.pony )