Commit 947ae362 by Braden MacDonald

Add a 32-bit Linux binary

parent cb0f4c50
This diff was suppressed by a .gitattributes entry.
...@@ -7,7 +7,8 @@ try { ...@@ -7,7 +7,8 @@ try {
} }
} catch (e) { } catch (e) {
// default to a precompiled binary if no build exists // default to a precompiled binary if no build exists
binding = require(__dirname + '/precompiled/'+process.platform+'/binding'); var platform_full = process.platform+'-'+process.arch;
binding = require(__dirname + '/precompiled/'+platform_full+'/binding');
} }
if (binding === null) { if (binding === null) {
throw new Error('Cannot find appropriate binary library for node-sass'); throw new Error('Cannot find appropriate binary library for node-sass');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment