Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions npm/function-runner/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ function platarch() {
case "arm64":
arch = "arm";
break;
// A 32 bit arch likely needs that someone has 32bit Node installed on a
// 64 bit system, and wasmtime doesn't support 32bit anyway.
case "ia32":
case "x64":
arch = "x86_64";
break;
Expand Down
4 changes: 2 additions & 2 deletions npm/function-runner/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion npm/function-runner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "function-runner",
"version": "4.0.1",
"version": "4.0.2",
"description": "",
"main": "index.js",
"bin": {
Expand Down