extract_from_gog.sh fails to extract

Issue #266 resolved
Matt Leonard created an issue

Was trying to install this via Lutris, manually downloaded the tarball to use the extract_from_gog.sh script, when running this script this is what I get.

$ ./extract_from_gog.sh setup_daikatana_2.0.0.3.exe 
Extracting installer:
Moving install_tmp/data/ from installer to ./data/
mv: cannot stat './install_tmp/data': No such file or directory
Retrieving manual from installer
mv: cannot stat './install_tmp/*.pdf': No such file or directory
Cleaning up unused files from installer

It will delete the data file inside of the 1.3 Daikatana folder.

I think GOG changed how the installer works because there is now a sub folder called “app” inside of the install_tmp folder.

Changing line 71 to

mv ./install_tmp/app/data .

and line 74 to

mv ./install_tmp/app/*.pdf .

Fixed the problem for me.

Comments (1)

  1. Log in to comment