blob: 693b672f7fc1366b17dde422ec321ed06473c378 (
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 add $@
else
echo Need to put some kind of cvs command here in q_cvs_add !!
# cvs add $@
fi
|