Skip to content

Commit

Permalink
chore: fix justfile tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
sandorex committed Sep 13, 2024
1 parent 52ea247 commit e024699
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ default:

# get cargo package version
get-version:
@cargo pkgid | cut -d "@" -f2
@cargo pkgid | perl -pe '($_)=/([0-9]+([.][0-9]+)+)/'

# run cargo check test and clippy
test:
Expand All @@ -12,7 +12,7 @@ test:
cargo clippy

# tag current package version in git
git-tag:
tag:
#!/usr/bin/env bash
set -e
Expand Down

0 comments on commit e024699

Please sign in to comment.