Skip to content
Snippets Groups Projects
Commit bb981aa6 authored by Nicolas Noble's avatar Nicolas Noble Committed by GitHub
Browse files

Merge pull request #7480 from murgatroid99/node_tools_tarball_names

Correct shell scripting mistake in node package generation code
parents 21059e23 1c2268b4
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ mkdir -p $output_dir
well_known_protos=( any api compiler/plugin descriptor duration empty field_mask source_context struct timestamp type wrappers )
for arch in {x86,x64}; do
case arch in
case $arch in
x86)
node_arch=ia32
;;
......@@ -70,7 +70,7 @@ for arch in {x86,x64}; do
;;
esac
for plat in {windows,linux,macos}; do
case plat in
case $plat in
windows)
node_plat=win32
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment