mirror of
https://github.com/actions/setup-java.git
synced 2026-07-29 09:05:56 +00:00
- check-dir.sh: with set -u, invoking without a <dir> argument failed with an opaque "parameter not set" error. Add an explicit argc check that prints a usage message and exits 2 (distinct from the assertion failure code 1). - e2e-cache.yml: the sbt-save and sbt-restore jobs run on an ubuntu-22.04 matrix entry, but their coursier-cache steps were guarded by 'if: matrix.os == "ubuntu-latest"', so those checks never executed on Ubuntu. Align the conditionals with the matrix (ubuntu-22.04), matching the newer sbt1/sbt2 jobs. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
40 lines
889 B
Bash
Executable File
40 lines
889 B
Bash
Executable File
#!/bin/sh
|
|
# Assert whether a directory exists, for use in the e2e cache workflows.
|
|
#
|
|
# Usage: check-dir.sh <dir> [present|absent]
|
|
#
|
|
# present (default): fail if <dir> does NOT exist, otherwise list its contents.
|
|
# absent: fail if <dir> DOES exist.
|
|
#
|
|
# Call with already-expanded paths (e.g. "$HOME/.gradle/caches") to avoid
|
|
# tilde-expansion pitfalls.
|
|
set -eu
|
|
|
|
if [ "$#" -lt 1 ]; then
|
|
echo "Usage: check-dir.sh <dir> [present|absent]" >&2
|
|
exit 2
|
|
fi
|
|
|
|
dir=$1
|
|
mode=${2:-present}
|
|
|
|
case "$mode" in
|
|
present)
|
|
if [ ! -d "$dir" ]; then
|
|
echo "::error::The $dir directory does not exist unexpectedly"
|
|
exit 1
|
|
fi
|
|
ls "$dir"
|
|
;;
|
|
absent)
|
|
if [ -d "$dir" ]; then
|
|
echo "::error::The $dir directory exists unexpectedly"
|
|
exit 1
|
|
fi
|
|
;;
|
|
*)
|
|
echo "::error::Unknown mode '$mode' (expected 'present' or 'absent')"
|
|
exit 1
|
|
;;
|
|
esac
|