Renamed relative to absolute

This commit is contained in:
Christopher Karper
2015-02-21 19:40:21 -05:00
parent 67361b27e1
commit 7d75480a6f
+2 -2
View File
@@ -60,11 +60,11 @@ function toAbsolute(pt) {
require('../lib').compile({
input : require.resolve(toAbsolute(argv.i)),
output : toRelative(argv.o),
output : toAbsolute(argv.o),
flags : argv.f,
nodeVersion : argv.r,
python : argv.python,
nodeTempDir : toRelative(argv.t) }, function(error) {
nodeTempDir : toAbsolute(argv.t) }, function(error) {
if(error) console.log(error.message);
});