Skip to content
This repository was archived by the owner on Oct 5, 2024. It is now read-only.
This repository was archived by the owner on Oct 5, 2024. It is now read-only.

unshield commands to extract RCT2 files on Linux from Retail CD version are wrong #44

@njourdane

Description

@njourdane

On this page, on the Retail CD version section, there are these commands:

unshield -g Minimum -d "PATH-TO-EXTRACT-FILES-TO" x "INSTALLER-LOCATION/data1.hdr"
cp -R "$INSTALLDIR/Data/" "$EXTRACTDIR/Minimum/Data"
mv "$EXTRACTDIR/Minimum" "$EXTRACTDIR/RCT2"

which are not correct, because $INSTALLDIR and $EXTRACTDIR are never defined.

Instead it should be something like:

INSTALL_DIR=path/to/installer/location
EXTRACT_DIR=path/to/extract/files/to
unshield -g Minimum -d "$EXTRACT_DIR" x "$INSTALL_DIR/data1.hdr"
cp -R "$INSTALL_DIR/Data/" "$EXTRACT_DIR/Minimum/Data"
mv "$EXTRACT_DIR/Minimum" "$EXTRACT_DIR/RCT2"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions