Skip to content

Commit 8f36c75

Browse files
committedMar 18, 2015
SourceMap: Fixes relative file path issue.
Issue URL: sass/node-sass#764. PR URL: #964.
1 parent 4217540 commit 8f36c75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎context.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ namespace Sass {
111111
}
112112
}
113113

114-
emitter.set_filename(output_path);
114+
emitter.set_filename(resolve_relative_path(output_path, source_map_file, cwd));
Has a conversation. Original line has a conversation.
115115

116116
}
117117

0 commit comments

Comments
 (0)
Please sign in to comment.