Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #19 from bradenmacdonald/ia32-binary
Browse files Browse the repository at this point in the history
32-bit Linux precompiled binary
  • Loading branch information
andrew committed Jul 19, 2012
2 parents cb0f4c5 + 947ae36 commit ba80ff0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 1 deletion.
File renamed without changes.
Binary file added precompiled/linux-ia32/binding.node
Binary file not shown.
File renamed without changes.
3 changes: 2 additions & 1 deletion sass.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ try {
}
} catch (e) {
// 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) {
throw new Error('Cannot find appropriate binary library for node-sass');
Expand Down

0 comments on commit ba80ff0

Please sign in to comment.