Skip to content

Commit 359b40d

Browse files
committed
Ensure dir exists before writing update checklist
1 parent ef7ea3e commit 359b40d

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/trivy-docker.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ on:
1818
- .github/workflows/trivy-docker.yaml
1919

2020
schedule:
21-
# Run at 10:15 am UTC (3:15am PT/5:15am CT)
22-
# Run at 0 minutes 0 hours of every day.
2321
- cron: "15 10 * * *"
2422

2523
workflow_dispatch:

ci/build/update-vscode.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ function update_vscode() {
2020
if ! git checkout 2>&1 "$target_vscode_version" ; then
2121
echo "$target_vscode_version does not exist locally, fetching..."
2222
git fetch --all --prune
23+
echo "Checking out $target_vscode_version again..."
2324
git checkout "$target_vscode_version"
2425
fi
2526
popd

ci/lib.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ nodeArch() {
8080

8181
run-steps() {
8282
local -i failed=0
83+
mkdir -p .cache
8384
rm -f .cache/checklist
8485
while (( $# )) ; do
8586
local name=$1 ; shift

0 commit comments

Comments
 (0)