mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-10 09:32:29 +01:00
8 lines
166 B
Bash
Executable File
8 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ $TARGET == "windows" ]]; then
|
|
wine openrct2.exe sprite build data/g2.dat resources/g2/
|
|
else
|
|
./openrct2 sprite build data/g2.dat resources/g2/
|
|
fi
|