fix(upload_ami_txt): One missed URL fixup

I added boards to the path for the other files but not ami_all.txt :(
This commit is contained in:
Michael Marineau 2014-06-02 12:20:57 -07:00
parent 17835eeb79
commit a830e8ca49

View File

@ -84,7 +84,7 @@ for r in "${!AMIS[@]}"; do
OUT="${OUT}|${r}=${AMIS[$r]}"
fi
done
url="$GS_URL/$GROUP/$BOARD/$VER/${IMAGE}_all.txt"
url="$GS_URL/$GROUP/boards/$BOARD/$VER/${IMAGE}_all.txt"
tmp=$(mktemp --suffix=.txt)
trap "rm -f '$tmp'" EXIT
echo "$OUT" > "$tmp"