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 bd3c0aa commit 9439fd2Copy full SHA for 9439fd2
generate_manifest_script.sh
@@ -32,11 +32,7 @@ function print_annotate_cmd() {
32
# The manifest tool expects "amd64" as arch and not "x86_64"
33
march=$(echo ${arch_tag} | awk -F':' '{ print $2 }' | awk -F'-' '{ print $1 }')
34
if [ ${march} == "x86_64" ]; then
35
- if [ ${os} == "windows" ]; then
36
- march="windows-amd"
37
- else
38
- march="amd64"
39
- fi
+ march="amd64"
40
fi
41
echo "\"${manifest_tool}\" manifest annotate ${main_tag} ${arch_tag} --os ${os} --arch ${march}" >> ${man_file}
42
}
0 commit comments