Skip to content

Commit

Permalink
fix sh
Browse files Browse the repository at this point in the history
Signed-off-by: Keming <[email protected]>
  • Loading branch information
kemingy committed Nov 14, 2024
1 parent 498e311 commit 824e2aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vchord"
version = "0.0.0"
version = "0.1.0"
edition = "2021"

[lib]
Expand Down
4 changes: 4 additions & 0 deletions tools/schema.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ if [[ " $@ " =~ --target' '([^ ]+) ]]; then
DIR="./target/$TARGET/release"
elif [[ " $@ " =~ " --profile opt " ]]; then
DIR="./target/$TARGET/opt"
elif [[ " $@ " =~ " --profile release " ]]; then
DIR="./target/$TARGET/release"
else
DIR="./target/$TARGET/debug"
fi
Expand All @@ -14,6 +16,8 @@ else
DIR="./target/release"
elif [[ " $@ " =~ " --profile opt " ]]; then
DIR="./target/opt"
elif [[ " $@ " =~ " --profile release " ]]; then
DIR="./target/release"
else
DIR="./target/debug"
fi
Expand Down

0 comments on commit 824e2aa

Please sign in to comment.