author | kergoth <kergoth> | 2002-01-25 22:14:26 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-01-25 22:14:26 (UTC) |
commit | 15318cad33835e4e2dc620d033e43cd930676cdd (patch) (side-by-side diff) | |
tree | c2fa0399a2c47fda8e2cd0092c73a809d17f68eb /scripts/q_cvs_edit | |
download | opie-15318cad33835e4e2dc620d033e43cd930676cdd.zip opie-15318cad33835e4e2dc620d033e43cd930676cdd.tar.gz opie-15318cad33835e4e2dc620d033e43cd930676cdd.tar.bz2 |
Initial revision
-rwxr-xr-x | scripts/q_cvs_edit | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/q_cvs_edit b/scripts/q_cvs_edit new file mode 100755 index 0000000..73a04db --- a/dev/null +++ b/scripts/q_cvs_edit @@ -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 edit $@ +else + echo Need to put some kind of cvs command here in q_cvs_edit !! + # cvs edit $@ +fi + + |