mirror of
https://github.com/stucki/docker-lineageos
synced 2024-12-19 17:12:29 -05:00
13 lines
226 B
Bash
13 lines
226 B
Bash
#!/bin/sh
|
|
|
|
# Initialize ccache if needed
|
|
if [ ! -f ${CCACHE_DIR}/ccache.conf ]; then
|
|
echo "Initializing ccache in /srv/ccache..."
|
|
ccache -M ${CCACHE_SIZE}
|
|
fi
|
|
|
|
export USER="build"
|
|
|
|
# Launch screen session
|
|
screen -s /bin/bash
|