mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 18:31:59 -05:00
7 lines
166 B
Bash
Executable file
7 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
|