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.
1 parent 8e4f92d commit 349dcf8Copy full SHA for 349dcf8
.buildkite/commands/install-node-dependencies.sh
@@ -22,6 +22,14 @@ echo "--- :npm: Restore cache if present"
22
restore_cache "$CACHEKEY"
23
restore_cache "$PNPM_CACHEKEY"
24
25
+# Check if /files/ folder exists after restoring cache
26
+if [ -d "./files" ]; then
27
+ echo "The folder /files/ exists."
28
+else
29
+ echo "The folder /files/ does not exist."
30
+fi
31
+
32
33
if [[ "${RESTORE_ONLY}" == 'true' ]]; then
34
echo 'Exiting after restoring caches as per --restore-only call parameter.'
35
exit 0
0 commit comments