We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8815639 commit c2decc9Copy full SHA for c2decc9
features/src/sccache/install.sh
@@ -21,7 +21,8 @@ fi
21
# Install sccache
22
wget --no-hsts -q -O- \
23
"https://github.com/$SCCACHE_REPOSITORY/releases/download/v$SCCACHE_VERSION/sccache-v$SCCACHE_VERSION-$(uname -m)-unknown-linux-musl.tar.gz" \
24
- | tar -C /usr/bin -zf - --wildcards --strip-components=1 -x '*/sccache';
+ | tar -C /usr/bin -zf - --wildcards --strip-components=1 -x '*/sccache' \
25
+ && chmod +x /usr/bin/sccache;
26
27
mkdir -m 0777 -p /var/log/devcontainer-utils;
28
touch /var/log/devcontainer-utils/sccache.log;
0 commit comments