Update of /cvsroot/cvsshell/cvsshell
In directory usw-pr-cvs1:/tmp/cvs-serv29583
Modified Files:
install.py
Log Message:
* added support for filtering the file-listing
* add now ask if the files should be added.
Index: install.py
===================================================================
RCS file: /cvsroot/cvsshell/cvsshell/install.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** install.py 11 Mar 2002 10:09:49 -0000 1.2
--- install.py 11 Mar 2002 12:02:13 -0000 1.3
***************
*** 45,50 ****
def getPrompt(self):
if self.targetDir is None:
! return 'Into which directory should I install the shellscript that starts CvsShell?\n' \
! 'This directory should be included in your $PATH variable.\n$ '
else: # This will be reached on windows only
return 'Where can I find the cvs executable (cvs.exe)?\n$ '
--- 45,50 ----
def getPrompt(self):
if self.targetDir is None:
! return 'Into which directory should I install the shellscript that starts ' \
! 'CvsShell?\nThis directory should be included in your $PATH variable.\n$ '
else: # This will be reached on windows only
return 'Where can I find the cvs executable (cvs.exe)?\n$ '
***************
*** 95,99 ****
launcher = startup
self.printMsg("You can launch it by typing `%s' in a terminal window." % launcher)
! if self.onWindows: self.printMsg('You can also click the icon of this file in the explorer.')
--- 95,100 ----
launcher = startup
self.printMsg("You can launch it by typing `%s' in a terminal window." % launcher)
! if self.onWindows:
! self.printMsg('You can also click the icon of this file in the explorer.')
|