Fix release index validation script

pull/2528/head
Steven Crespo 2023-04-07 10:47:28 -07:00
parent fc0deb7b05
commit a809042ff9
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ for url in $(echo $urls | xargs); do
echo "skipping ${url}"
continue
fi
if [[ -f ${url} ]]; then
if [[ -f ${ROOT_DIR}/${url} ]]; then
echo "found ${url}"
else
echo "MISSING ${url}"