Skip to content

Commit

Permalink
fix permissions inside docker
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jul 22, 2024
1 parent 13e3a9f commit 6fb1ad6
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions 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 apache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "Apache HTTPD server plugin for FluentCI"
edition = "2021"
license = "MIT"
name = "apache"
version = "0.1.3"
version = "0.1.4"

[lib]
crate-type = [
Expand Down
2 changes: 1 addition & 1 deletion apache/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use fluentci_pdk::dag;

// ...

dag().call("https://pkg.fluentci.io/apache@v0.1.2?wasm=1", "start", vec![])?;
dag().call("https://pkg.fluentci.io/apache@v0.1.4?wasm=1", "start", vec![])?;
```

## 📚 Examples
Expand Down
2 changes: 1 addition & 1 deletion apache/fluentci.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ keywords = [
]
license = "MIT"
name = "apache"
version = "0.1.3"
version = "0.1.4"
2 changes: 1 addition & 1 deletion apache/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub fn setup() -> Result<String, Error> {
.with_exec(vec!["[ -f ../../index.html ] || flox activate -- wget https://raw.githubusercontent.com/fluentci-io/services/main/apache/web/index.html -O ../../index.html"])?
.with_exec(vec![
match is_root {
true => "chown -R fluentci /root /nix && chown -R root /root/.cache",
true => "chown -R fluentci ../.. /nix",
false => "true"
}
])?
Expand Down
2 changes: 1 addition & 1 deletion postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "Postgres plugin for FluentCI"
edition = "2021"
license = "MIT"
name = "postgres"
version = "0.1.3"
version = "0.1.4"

[lib]
crate-type = [
Expand Down
2 changes: 1 addition & 1 deletion postgres/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use fluentci_pdk::dag;

// ...

dag().call("https://pkg.fluentci.io/postgres@v0.1.3?wasm=1", "start", vec![])?;
dag().call("https://pkg.fluentci.io/postgres@v0.1.4?wasm=1", "start", vec![])?;
```

## 📚 Examples
Expand Down
2 changes: 1 addition & 1 deletion postgres/fluentci.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ keywords = [
]
license = "MIT"
name = "postgres"
version = "0.1.3"
version = "0.1.4"
2 changes: 1 addition & 1 deletion postgres/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pub fn setup() -> Result<String, Error> {
])?
.with_exec(vec![
match is_root {
true => "chown -R fluentci /root /nix && chown -R root /root/.cache",
true => "chown -R fluentci ../.. /nix",
false => "true"
}
])?
Expand Down

0 comments on commit 6fb1ad6

Please sign in to comment.