From d5c54ea9ec48a8ea16915ff84408c0f4cad14c51 Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Fri, 20 Oct 2006 17:53:17 +0000 Subject: [PATCH] fix a small syntax bug in the reset script. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15049 57a11ea4-9604-0410-9ed3-97b8803252fd --- packaging/win32/reset.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/win32/reset.sh b/packaging/win32/reset.sh index 5f39d7d41b..af1f8c9054 100644 --- a/packaging/win32/reset.sh +++ b/packaging/win32/reset.sh @@ -16,7 +16,7 @@ esac #### Load Custom.sh -function add_step() { } +function add_step() { echo "" >/dev/null; } function qpushd() { pushd "$@" >/dev/null; } function qpopd() { popd >/dev/null; }