summaryrefslogtreecommitdiff
path: root/scripts/q_cvs_add
Side-by-side diff
Diffstat (limited to 'scripts/q_cvs_add') (more/less context) (ignore whitespace changes)
-rwxr-xr-xscripts/q_cvs_add17
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/q_cvs_add b/scripts/q_cvs_add
new file mode 100755
index 0000000..693b672
--- a/dev/null
+++ b/scripts/q_cvs_add
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Adds a file to which ever repository is appropriate
+#
+# Copyright 1999-2000 Trolltech AS. All rights reserved.
+#
+
+
+if [ $P4PORT = "lupinella:866" ]
+then
+ p4 add $@
+else
+ echo Need to put some kind of cvs command here in q_cvs_add !!
+ # cvs add $@
+fi
+
+