mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-09 12:25:17 -04:00
8 lines
136 B
Bash
Executable File
8 lines
136 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
if [[ "${MACOS_AMD64}" ]]; then
|
|
arch -x86_64 ccache -z -M "${CCACHE_SIZE}"
|
|
else
|
|
ccache -z -M "${CCACHE_SIZE}"
|
|
fi
|