Skip to content

Commit

Permalink
fix 16f768f
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Aug 27, 2013
1 parent 0455ea7 commit 97a3a4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ms-windows/osgeo4w/creatensis.pl
Expand Up @@ -174,14 +174,14 @@ sub getDeps {
mkdir "bin", 0755;

unless( -f "bin/nircmd.exe" ) {
unless( -f "../../../packages/nircmd.zip" ) {
system "cd ../../../packages; wget $wgetopt -c http://www.nirsoft.net/utils/nircmd.zip";
unless( -f "../packages/nircmd.zip" ) {
system "cd ../packages; wget $wgetopt -c http://www.nirsoft.net/utils/nircmd.zip";
die "download of nircmd.zip failed" if $?;
}

mkdir "apps", 0755;
mkdir "apps/nircmd", 0755;
system "cd apps/nircmd; unzip ../../../packages/nircmd.zip && mv nircmd.exe ../../bin";
system "cd apps/nircmd; unzip ../../../packages/nircmd.zip && mv nircmd.exe nircmdc.exe ../../bin";
die "unpacking of nircmd failed" if $?;
}

Expand Down

0 comments on commit 97a3a4f

Please sign in to comment.