Renamed relative to absolute

This commit is contained in:
Christopher Karper
2015-02-21 19:40:21 -05:00
parent 1d09a6b001
commit 7ab7f986cf
+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);
});