1
0
mirror of https://github.com/stucki/docker-lineageos synced 2024-12-19 17:12:29 -05:00

Fix ccache initialization check

This commit is contained in:
Michael Stucki 2017-02-03 10:07:43 +01:00
parent 19f81883bc
commit 98bbfc0699

View File

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
# Initialize ccache if needed # Initialize ccache if needed
if [ ! -f /srv/ccache/CACHEDIR.TAG ]; then if [ ! -f /srv/ccache/ccache.conf ]; then
echo "Initializing ccache in /srv/ccache..." echo "Initializing ccache in /srv/ccache..."
CCACHE_DIR=/srv/ccache ccache -M 50G CCACHE_DIR=/srv/ccache ccache -M 50G
fi fi