Description: <short description, required>
 <long description that can span multiple lines, optional>

Description: Allow build on any architectures
 Remove artificial limit set by upstream authors
Author: Anthony Fok <foka@debian.org>
Origin: vendor
Forwarded: no
Last-Update: 2020-03-11
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- node-node-sass-4.13.1.orig/lib/extensions.js
+++ node-node-sass-4.13.1/lib/extensions.js
@@ -44,7 +44,7 @@ function getHumanArchitecture(arch) {
     case 'ia32': return '32-bit';
     case 'x86': return '32-bit';
     case 'x64': return '64-bit';
-    default: return false;
+    default: return arch || process.arch;
   }
 }
 
--- node-node-sass-4.13.1.orig/test/errors.js
+++ node-node-sass-4.13.1/test/errors.js
@@ -9,8 +9,10 @@ describe('binary errors', function() {
       return 'Windows';
     } else if (process.platform === 'darwin') {
       return 'OS X';
+    } else if (process.platform === 'linux') {
+      return 'Linux';
     }
-    return '';
+    return process.platform;
   }
 
   function getCurrentArchitecture() {
@@ -19,7 +21,7 @@ describe('binary errors', function() {
     } else if (process.arch === 'x64') {
       return '64-bit';
     }
-    return '';
+    return process.arch;
   }
 
   function getCurrentEnvironment() {
