We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27e0c13 commit e8371dbCopy full SHA for e8371db
tools/debug-ci-e2e-fail.sh
@@ -15,7 +15,7 @@ set -o pipefail
15
16
DIR="ci-e2e-traces"
17
18
-COMMIT=$1
+COMMIT=$(git rev-parse "$1")
19
20
# Get the ID of the last github actions run if there was one. If a commit
21
# is specified, use that, otherwise
@@ -42,8 +42,8 @@ if [ -e "$DIR/.run" ] && [ "$RUN_ID" == "$(cat $DIR/.run)" ]; then
42
else
43
rm -rf $DIR
44
echo "Downloading traces..."
45
- gh run download $RUN_ID --dir $DIR
46
- echo $RUN_ID > $DIR/.run
+ gh run download "$RUN_ID" --dir $DIR
+ echo "$RUN_ID" > $DIR/.run
47
fi
48
49
# gnarly select and re-find is to take filepath noise out of the select list
0 commit comments