mirror of
https://github.com/OpenMW/openmw.git
synced 2025-07-27 04:44:06 +00:00
7 lines
100 B
Bash
Executable file
7 lines
100 B
Bash
Executable file
#!/bin/sh -ex
|
|
|
|
if [[ "${MACOS_AMD64}" ]]; then
|
|
arch -x86_64 ccache -svv
|
|
else
|
|
ccache -svv
|
|
fi
|