Skip to content

Commit

Permalink
Fix publishing golem-cli (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
vigoo authored Mar 23, 2024
1 parent 75d5f66 commit abbdee7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ args = ["-i", "s/0\\.0\\.0/${VERSION}/g", "golem-client/Cargo.toml"]
[tasks.set-golem-client-version.mac]
description = "Sets the version in golem-client/Cargo.toml to the value of the VERSION environment variable"
command = "sed"
args = ["-i", "''", "s/0\\.0\\.0/${VERSION}/g", "golem-client/Cargo.toml"]
args = ["-i", "", "s/0\\.0\\.0/${VERSION}/g", "golem-client/Cargo.toml"]

[tasks.publish-golem-client]
description = "Publishes golem-client package to crates.io"
Expand All @@ -247,7 +247,7 @@ args = ["-i", "s/0\\.0\\.0/${VERSION}/g", "golem-cli/Cargo.toml"]
[tasks.set-golem-cli-version.mac]
description = "Sets the version in golem-cli/Cargo.toml to the value of the VERSION environment variable"
command = "sed"
args = ["-i", "''", "s/0\\.0\\.0/${VERSION}/g", "golem-cli/Cargo.toml"]
args = ["-i", "", "s/0\\.0\\.0/${VERSION}/g", "golem-cli/Cargo.toml"]


[tasks.publish-golem-cli]
Expand Down
2 changes: 1 addition & 1 deletion golem-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ path = "tests/sharding.rs"
harness = false

[dependencies]
golem-client = { path = "../golem-client" }
golem-client = { path = "../golem-client", version = "0.0.0" }

async-trait = { workspace = true }
chrono = { workspace = true }
Expand Down

0 comments on commit abbdee7

Please sign in to comment.