Skip to content

Commit

Permalink
Add --load-path as alias for -I.
Browse files Browse the repository at this point in the history
  • Loading branch information
stijnvn committed Dec 29, 2013
1 parent 72bd4bd commit 531cb98
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sassc.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ void print_usage(char* argv0) {
printf(i == 0 ? ".\n" : ",");
}
printf(" -l Emit comments showing original line numbers.\n");
printf(" -I PATH Set Sass import path.\n");
printf(" -I, --load-path PATH Set Sass import path.\n");
printf(" -m, --sourcemap Emit source map.\n");
printf(" -h Display this help message.\n");
printf("\n");
Expand All @@ -156,7 +156,8 @@ int main(int argc, char** argv) {
int long_index = 0;
static struct option long_options[] =
{
{ "sourcemap", no_argument, 0, 'm' }
{ "load-path", required_argument, 0, 'I' },
{ "sourcemap", no_argument, 0, 'm' }
};
while ((c = getopt_long_only(argc, argv, "ho:lmt:I:", long_options, &long_index)) != -1) {
switch (c) {
Expand Down

0 comments on commit 531cb98

Please sign in to comment.