Skip to content

Commit aa6d5c6

Browse files
authored
Merge pull request #218 from intact/fix-sourcemap-argument
Fix CLI sourcemap argument
2 parents a839dfa + bee7d6f commit aa6d5c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sassc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ int main(int argc, char** argv) {
271271
{ "help", no_argument, 0, 'h' },
272272
{ NULL, 0, NULL, 0}
273273
};
274-
while ((c = getopt_long(argc, argv, "vhsl:mMap:t:I:P:", long_options, &long_index)) != -1) {
274+
while ((c = getopt_long(argc, argv, "vhslm:Map:t:I:P:", long_options, &long_index)) != -1) {
275275
switch (c) {
276276
case 's':
277277
from_stdin = 1;

0 commit comments

Comments
 (0)