Skip to content

Commit

Permalink
Merge pull request #18 from boozook/fix-typo
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
rtsuk authored Apr 21, 2022
2 parents 5d0be2b + d5bdd73 commit ae18654
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,5 +138,5 @@ jobs:
with:
upload_url: ${{ needs.release.outputs.upload_url }}
asset_path: "target/release/crank${{ matrix.os.name == 'windows' && '.exe' || '' }}"
asset_name: crank-${{ matrix.os.name }}-${{ steps.build-info.outputs.arch }}
asset_name: crank-${{ matrix.os.name }}-${{ steps.build-info.outputs.arch }}${{ matrix.os.name == 'windows' && '.exe' || '' }}"
asset_content_type: application/octet-stream
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ impl Package {
}

#[derive(StructOpt, Debug)]
#[structopt(name = "clank")]
#[structopt(name = "crank")]
struct Opt {
#[structopt(short, long)]
verbose: bool,
Expand Down

0 comments on commit ae18654

Please sign in to comment.