summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--support/scripts/version-manager.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/scripts/version-manager.sh b/support/scripts/version-manager.sh
index 73dce19ce4..3706dfe876 100644
--- a/support/scripts/version-manager.sh
+++ b/support/scripts/version-manager.sh
@@ -98,7 +98,7 @@ function version-manager() {
# update version file
run rm -f "$file";
- runO /dev/null cvs update "$file";
+ run cvs -Q update "$file";
# get old value
local old_value=`tail -1 "$file"`;
@@ -139,7 +139,7 @@ function version-manager() {
run mv "$file~" "$file";
# commit version file
- runO /dev/null cvs commit -m "Set version to $new_value" "$file";
+ runO /dev/null cvs -Q commit -m "Set version to $new_value" "$file";
if [ "$command" = "set" ]; then
echo "Successfully changed version to $new_value";