author | kergoth <kergoth> | 2002-01-25 22:14:26 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-01-25 22:14:26 (UTC) |
commit | 15318cad33835e4e2dc620d033e43cd930676cdd (patch) (unidiff) | |
tree | c2fa0399a2c47fda8e2cd0092c73a809d17f68eb /scripts/q_cvs_add | |
download | opie-15318cad33835e4e2dc620d033e43cd930676cdd.zip opie-15318cad33835e4e2dc620d033e43cd930676cdd.tar.gz opie-15318cad33835e4e2dc620d033e43cd930676cdd.tar.bz2 |
Initial revision
-rwxr-xr-x | scripts/q_cvs_add | 17 |
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 @@ | |||
1 | #!/bin/sh | ||
2 | # | ||
3 | # Adds a file to which ever repository is appropriate | ||
4 | # | ||
5 | # Copyright 1999-2000 Trolltech AS. All rights reserved. | ||
6 | # | ||
7 | |||
8 | |||
9 | if [ $P4PORT = "lupinella:866" ] | ||
10 | then | ||
11 | p4 add $@ | ||
12 | else | ||
13 | echo Need to put some kind of cvs command here in q_cvs_add !! | ||
14 | # cvs add $@ | ||
15 | fi | ||
16 | |||
17 | |||