summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Lowther <victor.lowther@gmail.com>2008-05-27 18:41:20 -0500
committerVictor Lowther <victor.lowther@gmail.com>2008-05-27 18:41:20 -0500
commit27b3f0f77592989863351634aad78d615b8cbba4 (patch)
tree03890fb8d48b9a1498b41f8bd722e5d9cd75a42b
parent361e8a769a808f5f329f80f24f67d5d144f334b6 (diff)
Fix reversed logic when creating a parameters file.
-rw-r--r--pm/pm-functions.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/pm/pm-functions.in b/pm/pm-functions.in
index f49c17b..108654b 100644
--- a/pm/pm-functions.in
+++ b/pm/pm-functions.in
@@ -72,7 +72,7 @@ done
# save our parameter list.
mkdir -p "${STORAGEDIR}"
-[ -f "$PARAMETERS" ] && echo '' >"$PARAMETERS"
+[ -f "$PARAMETERS" ] || echo '' >"$PARAMETERS"
add_parameters "$@"