-rwxr-xr-x | scripts/q_cvs_submit | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/q_cvs_submit b/scripts/q_cvs_submit new file mode 100755 index 0000000..6b2b759 --- a/dev/null +++ b/scripts/q_cvs_submit @@ -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 submit $@ +else + echo Need to put some kind of cvs command here in q_cvs_submit !! + # cvs submit $@ +fi + + |