diff --git a/binding.cpp b/binding.cpp index 3852586bd..5c55b9f5f 100644 --- a/binding.cpp +++ b/binding.cpp @@ -50,6 +50,7 @@ void ExtractOptions(Local optionsValue, void* cptr, sass_context_wrapper* if (isFile) { sass_file_context* ctx = (sass_file_context*) cptr; ctx->input_path = CreateString(options->Get(NanNew("file"))); + ctx->output_path = CreateString(options->Get(NanNew("outFile"))); ctx->options.image_path = CreateString(options->Get(NanNew("imagePath"))); ctx->options.output_style = options->Get(NanNew("style"))->Int32Value(); ctx->options.source_comments = source_comments = options->Get(NanNew("comments"))->Int32Value();