We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0025f6 commit 24ffac0Copy full SHA for 24ffac0
.github/workflows/rust.yml
@@ -54,7 +54,6 @@ jobs:
54
run: |
55
GATE_REF="$(./tools/check_headers gate_ref)"
56
git clone --depth 1 --revision "$GATE_REF" \
57
- https://github.com/oxidecomputer/illumos-gate ./illumos-gate
58
- ls ./illumos-gate/usr/src/uts/intel/sys/
59
- ./tools/check_headers run ./illumos-gate
+ https://github.com/oxidecomputer/illumos-gate ../illumos-gate
+ ./tools/check_headers run ../illumos-gate
60
tools/check_headers
@@ -28,7 +28,7 @@ function usage() {
28
}
29
30
function run_checks() {
31
- export GATE_SRC="$1"
+ export GATE_SRC="$(readlink -e $1)"
32
33
if ! [ -d "$GATE_SRC" ]; then
34
echo "header-check was given non-existent \"$GATE_SRC\" as gate directory"
0 commit comments