blob: 73a04db30e2440c3c8042c597ce1036707c87be6 (
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 edit $@
else
echo Need to put some kind of cvs command here in q_cvs_edit !!
# cvs edit $@
fi
|