Skip to content

Commit 24edc41

Browse files
committed
Auto merge of #51565 - kennytm:fix-toolstate-on-appveyor, r=Mark-Simulacrum
Fix the recent spurious breakage on AppVeyor. Fixed the spurious error introduced by d2b5b76 due to a wrongly resolved relative path on AppVeyor. This only starts to happen today because we just entered the last week of the 6-week cycle.
2 parents 5205ae8 + 770e45c commit 24edc41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ci/docker/x86_64-gnu-tools/checktools.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ status_check() {
9191

9292
status_check "submodule_changed"
9393

94-
CHECK_NOT="$(dirname $0)/checkregression.py"
94+
CHECK_NOT="$(readlink -f "$(dirname $0)/checkregression.py")"
9595
change_toolstate() {
9696
# only update the history
9797
if python2.7 "$CHECK_NOT" "$OS" "$TOOLSTATE_FILE" "_data/latest.json" changed; then

0 commit comments

Comments
 (0)