Skip to content

Commit

Permalink
fix shell function
Browse files Browse the repository at this point in the history
Noticed that we aren't cleaning up the setatus API
  • Loading branch information
Andy C committed Jan 13, 2025
1 parent e8678bf commit 5822c3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion soil/github-actions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ publish-html-assuming-ssh-key() {
fi

# Show URLs again, so users can find the logs
show-soil-urls $prefix $run_dir $job_name
soil/web-worker.sh show-soil-urls $prefix $run_dir $job_name
}

# Notes on Github secrets:
Expand Down
4 changes: 3 additions & 1 deletion soil/web.sh
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ cleanup-status-api() {
ls | head -n -30 | xargs --no-run-if-empty -- rm -r -f -v
;;
true)
ls | head -n -30
# TODO: fix spew
#ls | head -n -30
ls | head
;;
*)
log 'Expected true or false for dry_run'
Expand Down

0 comments on commit 5822c3c

Please sign in to comment.