diff --git a/nsd/nodejs/arch_darwin_arm64.go b/nsd/nodejs/arch_darwin_arm64.go new file mode 100644 index 0000000..fbb4512 --- /dev/null +++ b/nsd/nodejs/arch_darwin_arm64.go @@ -0,0 +1,8 @@ +package nodejs + +// CurrentArch and CurrentURL describe how the URL of the nodejs download will look like +const ( + CurrentArch string = "darwin-x64" //until nodejs provides a specific image for arm64 we'll use x64 + CurrentURL DownloadURL = Stable + CurrentExtension FileExtension = TarXz +)