Re: checkdir: cannot create extraction directory

2006-06-21 Thread Larry Hall (Cygwin)
bh77 wrote: $> cygcheck unzip Found: C:\cygwin\bin\unzip.exe C:/cygwin/bin/unzip.exe C:\cygwin\bin\cygwin1.dll C:\WINDOWS\system32\ADVAPI32.DLL C:\WINDOWS\system32\ntdll.dll C:\WINDOWS\system32\KERNEL32.dll C:\WINDOWS\system32\RPCRT4.dll OK then. Well, I guess it's bac

Re: checkdir: cannot create extraction directory

2006-06-21 Thread bh77
$> cygcheck unzip Found: C:\cygwin\bin\unzip.exe C:/cygwin/bin/unzip.exe C:\cygwin\bin\cygwin1.dll C:\WINDOWS\system32\ADVAPI32.DLL C:\WINDOWS\system32\ntdll.dll C:\WINDOWS\system32\KERNEL32.dll C:\WINDOWS\system32\RPCRT4.dll -- View this message in context: http://www.nab

Re: checkdir: cannot create extraction directory

2006-06-20 Thread Larry Hall (Cygwin)
bh77 wrote: I am trying to unzip a file using the following command from a bash script under cygwin and receive the following error - which looks as though it may be permissions related. Does anyone have any idea what may be causing it ? code : # if the target directory does not exist, create it

Re: checkdir: cannot create extraction directory

2006-06-20 Thread bh77
e.g unzip -u "${SRC_ZIP}" "**/*.jar" -d "${TARGET_DIR}" there are no spaces in the directory structure - there are however the following characters: -._ (dash, fullstop and underscore) would any of these have the same effect ? -- View this message in context: http://www.nabble.com/checkdir%3A-

Re: checkdir: cannot create extraction directory

2006-06-20 Thread Igor Peshansky
On Tue, 20 Jun 2006, bh77 wrote: > I am trying to unzip a file using the following command from a bash script > under cygwin and receive the following error - which looks as though it may > be permissions related. Does anyone have any idea what may be causing it ? > > code : > # if the target dire

Re: checkdir: cannot create extraction directory

2006-06-20 Thread bh77
sorry that should read # if the target directory does not exist, create it. if [ ! -d ${TARGET_DIR} ] then echo making target dir mkdir ${TARGET_DIR} fi unzip -u ${SRC_ZIP} "**/*.jar" -d ${TARGET_DIR} -- View this message in context: http://www.nabble.com/checkdir%3A--cannot-create-extracti