From 6e676fdd98868d7e853d8532d55d923732c9f791 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 29 Aug 2010 09:35:21 +0200 Subject: [PATCH] astyle: prevent creating backup files --- runastyle | 2 +- runastyle.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runastyle b/runastyle index eb1920442..4fedb4535 100755 --- a/runastyle +++ b/runastyle @@ -1,7 +1,7 @@ #!/bin/bash style="--style=ansi --min-conditional-indent=0" -options="--pad-header --unpad-paren" +options="--pad-header --unpad-paren" --suffix=none astyle $style $options cli/*.cpp astyle $style $options cli/*.h diff --git a/runastyle.bat b/runastyle.bat index 0394eab51..3f3c46527 100644 --- a/runastyle.bat +++ b/runastyle.bat @@ -1,7 +1,7 @@ REM A script to run Astyle for the sources SET STYLE=--style=ansi --min-conditional-indent=0 -SET OPTIONS=--pad-header --unpad-paren +SET OPTIONS=--pad-header --unpad-paren --suffix=none astyle %STYLE% %OPTIONS% cli/*.cpp astyle %STYLE% %OPTIONS% cli/*.h