Skip to content
Snippets Groups Projects
Commit 1c2268b4 authored by murgatroid99's avatar murgatroid99
Browse files

Correct shell scripting mistake in node package generation code

parent 7195a490
No related branches found
No related tags found
No related merge requests found
...@@ -61,7 +61,7 @@ mkdir -p $output_dir ...@@ -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 ) well_known_protos=( any api compiler/plugin descriptor duration empty field_mask source_context struct timestamp type wrappers )
for arch in {x86,x64}; do for arch in {x86,x64}; do
case arch in case $arch in
x86) x86)
node_arch=ia32 node_arch=ia32
;; ;;
...@@ -70,7 +70,7 @@ for arch in {x86,x64}; do ...@@ -70,7 +70,7 @@ for arch in {x86,x64}; do
;; ;;
esac esac
for plat in {windows,linux,macos}; do for plat in {windows,linux,macos}; do
case plat in case $plat in
windows) windows)
node_plat=win32 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