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

Commit ab6692d

Browse files
committed
Binding: Send output path to upstream. (#379)
1 parent c792069 commit ab6692d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

binding.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ void ExtractOptions(Local<Value> optionsValue, void* cptr, sass_context_wrapper*
5050
if (isFile) {
5151
sass_file_context* ctx = (sass_file_context*) cptr;
5252
ctx->input_path = CreateString(options->Get(NanNew("file")));
53+
ctx->output_path = CreateString(options->Get(NanNew("outFile")));
5354
ctx->options.image_path = CreateString(options->Get(NanNew("imagePath")));
5455
ctx->options.output_style = options->Get(NanNew("style"))->Int32Value();
5556
ctx->options.source_comments = source_comments = options->Get(NanNew("comments"))->Int32Value();

0 commit comments

Comments
 (0)