blob: 6b2b759c00afde0c3f33b0e53b17818d03d621f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|