Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
slavaGanzin committed Aug 3, 2024
1 parent 03535c2 commit 5b63f5c
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 84 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
- name: Generate autocompletion scripts
run: |
mkdir -p releases
./await --autocomplete-fish > releases/await.fish
./await --autocomplete-bash > releases/await.bash
./await --autocomplete-zsh > releases/await.zsh
run: mkdir -p releases
- name: Move binary to release directory
run: |
Expand Down
25 changes: 0 additions & 25 deletions autocomplete.bash

This file was deleted.

25 changes: 0 additions & 25 deletions autocomplete.fish

This file was deleted.

32 changes: 0 additions & 32 deletions autocomplete.zsh

This file was deleted.

2 changes: 1 addition & 1 deletion await.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ void parse_args(int argc, char *argv[]) {
case 'S': args.service = optarg; break;
case 'i': args.interval = atoi(optarg); break;
case 'd': args.daemonize = 1; break;
case 'v': printf("1.0.3\n"); exit(0); break;
case 'v': printf("1.0.4\n"); exit(0); break;
case 'h': case '?': help(); break;
case 1:
if (strcmp(long_options[option_index].name, "autocomplete-fish") == 0) {
Expand Down

0 comments on commit 5b63f5c

Please sign in to comment.