Skip to content

Commit

Permalink
Merge pull request #218 from intact/fix-sourcemap-argument
Browse files Browse the repository at this point in the history
Fix CLI sourcemap argument
  • Loading branch information
mgreter authored Jan 11, 2018
2 parents a839dfa + bee7d6f commit aa6d5c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sassc.c
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ int main(int argc, char** argv) {
{ "help", no_argument, 0, 'h' },
{ NULL, 0, NULL, 0}
};
while ((c = getopt_long(argc, argv, "vhsl:mMap:t:I:P:", long_options, &long_index)) != -1) {
while ((c = getopt_long(argc, argv, "vhslm:Map:t:I:P:", long_options, &long_index)) != -1) {
switch (c) {
case 's':
from_stdin = 1;
Expand Down

0 comments on commit aa6d5c6

Please sign in to comment.