Skip to content

Commit

Permalink
Updated install script
Browse files Browse the repository at this point in the history
  • Loading branch information
mcfriend99 committed Feb 23, 2024
1 parent b30c150 commit 58fe5de
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/blade.c
Expand Up @@ -251,7 +251,11 @@ int main(int argc, char *argv[]) {

if (argc > 1) {
int opt;
#ifdef __linux__
while ((opt = getopt(argc, argv, "+hdeb:vg:wc:--")) != -1) {
#else
while ((opt = getopt(argc, argv, "hdeb:vg:wc:--")) != -1) {
#endif
switch (opt) {
case 'h': {
show_usage(argv, false);
Expand Down

0 comments on commit 58fe5de

Please sign in to comment.