Skip to content

Commit

Permalink
[plugin] fix packages
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Apr 13, 2024
1 parent 4af220d commit 076649c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dagger.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fastlane",
"sdk": "github.com/fluentci-io/daggerverse/deno-sdk@main",
"version": "v0.11.0",
"version": "v0.11.2",
"description": "",
"author": "Tsiry Sandratraina",
"license": "MIT"
Expand Down
2 changes: 1 addition & 1 deletion example/.fluentci/plugin/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 example/.fluentci/plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "fastlane"
version = "0.11.0"
version = "0.11.2"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion example/.fluentci/plugin/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub fn setup_devbox() -> Result<(), Error> {
.devbox()?
.with_exec(vec!["[ -f devbox.json ] || devbox init"])?
.with_exec(vec![&format!(
"grep -q 'ruby' devbox.json || devbox add ruby@{},jdk@17.0.7+7",
"grep -q 'ruby' devbox.json || devbox add ruby@{} jdk@17.0.7+7",
ruby_version
)])?
.stdout()?;
Expand Down
2 changes: 1 addition & 1 deletion plugin/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 plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "fastlane"
version = "0.11.1"
version = "0.11.2"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub fn setup_devbox() -> Result<(), Error> {
.devbox()?
.with_exec(vec!["[ -f devbox.json ] || devbox init"])?
.with_exec(vec![&format!(
"grep -q 'ruby' devbox.json || devbox add ruby@{},jdk@17.0.7+7",
"grep -q 'ruby' devbox.json || devbox add ruby@{} jdk@17.0.7+7",
ruby_version
)])?
.stdout()?;
Expand Down

0 comments on commit 076649c

Please sign in to comment.