summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2023-05-07 15:20:26 -0500
committerGitHub <noreply@github.com>2023-05-07 15:20:26 -0500
commit8834b590ede72c79532ccd34857a6904c48d3634 (patch)
treebbe69187fcd3972de5a872f12af4e23d69cfe151
parente129a1ddbcb359393bb2e45e00d2cfcf64336e39 (diff)
downloadcryptography-8834b590ede72c79532ccd34857a6904c48d3634.tar.gz
Print more rust dirs for debugging in mtime-fix (#8887)
-rw-r--r--.github/actions/mtime-fix/action.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/actions/mtime-fix/action.yml b/.github/actions/mtime-fix/action.yml
index 0690132db..42779037c 100644
--- a/.github/actions/mtime-fix/action.yml
+++ b/.github/actions/mtime-fix/action.yml
@@ -11,7 +11,7 @@ runs:
echo "The git available is probably too old so checkout didn't create a real git clone, skipping mtime fix"
exit 0
fi
- ls -Rla src/rust/src src/_cffi_src
+ ls -Rla src/rust src/_cffi_src
echo "Verifying commits are monotonic because if they're not caching gets wrecked"
COMMIT_ORDER=$(git log --pretty=format:%cd --date=format-local:%Y%m%d%H%M.%S -5)
SORTED_COMMIT_ORDER=$(git log --pretty=format:%cd --date=format-local:%Y%m%d%H%M.%S -5 | sort -rn)
@@ -22,5 +22,5 @@ runs:
echo "Setting mtimes for dirs"
for f in $(git ls-tree -t -r --name-only HEAD src/rust src/_cffi_src); do touch -t $(git log --pretty=format:%cd --date=format-local:%Y%m%d%H%M.%S -1 HEAD -- "$f") "$f"; done
echo "Done"
- ls -Rla src/rust/src src/_cffi_src
+ ls -Rla src/rust src/_cffi_src
shell: bash