From 4ca795056f71f4c374652a16515450f83ae4e1f4 Mon Sep 17 00:00:00 2001 From: Pete Johns Date: Sun, 19 Sep 2010 16:25:17 +1000 Subject: [PATCH] Fixed syntax error "./runastyle: line 4: --suffix=none: command not found" --- runastyle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runastyle b/runastyle index 4fedb4535..00f2807cb 100755 --- a/runastyle +++ b/runastyle @@ -1,7 +1,7 @@ #!/bin/bash style="--style=ansi --min-conditional-indent=0" -options="--pad-header --unpad-paren" --suffix=none +options="--pad-header --unpad-paren --suffix=none" astyle $style $options cli/*.cpp astyle $style $options cli/*.h