We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Dockerfile
1 parent b37cc6f commit aab6458Copy full SHA for aab6458
Dockerfile
@@ -51,8 +51,10 @@ if [ -n "\$PROJECT_DIR" ]; then
51
COMMIT_HASH=\$(git rev-parse HEAD)
52
echo "Attempting to download HLS cache from GitHub Artifact (cache-\$COMMIT_HASH-$COMPILER_NIX_NAME) for faster first launch ..."
53
gh run download -D .download -n "cache-\$COMMIT_HASH-$COMPILER_NIX_NAME"
54
- rsync -a .download/work/cardano-base/cardano-base/dist-newstyle .
55
- rm -r .download
+ if [ -n .download ]; then
+ rsync -a .download/dist-newstyle .
56
+ rm -r .download
57
+ fi
58
else
59
echo "\\\$GITHUB_TOKEN is not set. Skipping HLS cache download."
60
fi
0 commit comments