Skip to content

Commit 220470d

Browse files
committedAug 4, 2011
fix exporting in the os x app while maintaining compatibility with the ubuntu node ppa
1 parent 856f3e6 commit 220470d

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed
 

‎index.js

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
#!/usr/bin/env node
22
process.title = 'tilemill';
33

4+
// This is necessary to make optimist not special-case into coffeescript as
5+
// certain node installs (e.g. ubuntu node ppa) do not use `node` as the binary
6+
// name.
7+
process.argv[0] = 'node';
8+
49
require('tilelive-mapnik').registerProtocols(require('tilelive'));
510
require('mbtiles').registerProtocols(require('tilelive'));
611

‎models/Exports.server.bones

+1-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ var start = function(model, data, callback) {
1515
// nice the export process.
1616
args.push('-n19');
1717
// node command
18-
// @TODO note that process.execPath is not used here as certain
19-
// installs (e.g. ubuntu node ppa) do not use `node` as the binary
20-
// name causing optimist arg parsing to fail.
21-
args.push('node');
18+
args.push(process.execPath);
2219
// tilemill index.js
2320
args.push(path.resolve(path.join(__dirname + '/../index.js')));
2421
// export command

0 commit comments

Comments
 (0)
Please sign in to comment.