STXInstaller.st
changeset 1518 85114c70d811
parent 1517 3f0c8ccd0c33
child 1519 6196930f9a1d
equal deleted inserted replaced
1517:3f0c8ccd0c33 1518:85114c70d811
   459         OperatingSystem isUNIXlike ifTrue:[
   459         OperatingSystem isUNIXlike ifTrue:[
   460             cmd := '(cd ' , topDir , '/doc/online ; find . -type s -exec rm {} \; )'.
   460             cmd := '(cd ' , topDir , '/doc/online ; find . -type s -exec rm {} \; )'.
   461             commandTraceView showCR:'removing symbolic links ...'.
   461             commandTraceView showCR:'removing symbolic links ...'.
   462             commandTraceView endEntry.
   462             commandTraceView endEntry.
   463             self executeCommandAndShowOutput:cmd emphasize:false.
   463             self executeCommandAndShowOutput:cmd emphasize:false.
   464 self halt.
   464 
   465             cmd := '(cd ' , topDir , ' ; tar cf - .) | (cd ' , fullDir , ' ; tar xvf -)'.
   465             cmd := '(cd ' , topDir , ' ; tar cf - .) | (cd ' , fullDir , ' ; tar xvf -)'.
   466             commandTraceView showCR:'copying ...'.
   466             commandTraceView showCR:'copying ...'.
   467             commandTraceView endEntry.
   467             commandTraceView endEntry.
   468             cmd := cmd , ' 2>&1' .
   468             cmd := cmd , ' 2>&1' .
   469 
   469