Skip to content

Commit

Permalink
Stops it from hanging if called with no args (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
LuizFB authored and xzyfer committed Jul 25, 2016
1 parent 19493f0 commit 0730454
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sassc.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,8 @@ int main(int argc, char** argv) {
#ifdef _WIN32
get_argv_utf8(&argc, &argv);
#endif
if (argc == 1) {print_usage(argv[0]); return 0;}

char *outfile = 0;
int from_stdin = 0;
bool generate_source_map = false;
Expand Down

0 comments on commit 0730454

Please sign in to comment.