Skip to content

Commit

Permalink
NSIS3: fix untgz command (#3419)
Browse files Browse the repository at this point in the history
  • Loading branch information
landam committed Feb 12, 2024
1 parent 50a1f20 commit aaecfc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mswindows/GRASS-Installer.nsi.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ Function DownloadInstallMSRuntime

download_ok:
InitPluginsDir
untgz::extract "-d" "$TEMP\$ORIGINAL_UNTAR_FOLDER" "-zbz2" "$TEMP\$ARCHIVE_NAME"
untgz::extract -d "$TEMP\$ORIGINAL_UNTAR_FOLDER" -zbz2 "$TEMP\$ARCHIVE_NAME"
Pop $0
StrCmp $0 "success" untar_ok untar_failed

Expand Down Expand Up @@ -872,7 +872,7 @@ Function DownloadDataSet

download_ok:
InitPluginsDir
untgz::extract "-d" "$GIS_DATABASE" "$TEMP\$ARCHIVE_NAME"
untgz::extract -d "$GIS_DATABASE" "$TEMP\$ARCHIVE_NAME"
Pop $0
StrCmp $0 "success" untar_ok untar_failed

Expand Down

0 comments on commit aaecfc8

Please sign in to comment.