Skip to content

Commit 9439fd2

Browse files
committed
change arch for windows
1 parent bd3c0aa commit 9439fd2

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

generate_manifest_script.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,7 @@ function print_annotate_cmd() {
3232
# The manifest tool expects "amd64" as arch and not "x86_64"
3333
march=$(echo ${arch_tag} | awk -F':' '{ print $2 }' | awk -F'-' '{ print $1 }')
3434
if [ ${march} == "x86_64" ]; then
35-
if [ ${os} == "windows" ]; then
36-
march="windows-amd"
37-
else
38-
march="amd64"
39-
fi
35+
march="amd64"
4036
fi
4137
echo "\"${manifest_tool}\" manifest annotate ${main_tag} ${arch_tag} --os ${os} --arch ${march}" >> ${man_file}
4238
}

0 commit comments

Comments
 (0)