Skip to content

Commit

Permalink
fix(wiremock): change workdir
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Aug 1, 2024
1 parent cfcaa04 commit 6d6c400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wiremock/plugin/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub fn setup() -> Result<String, Error> {
])?
.with_exec(vec!["[ -f ../../mappings/github.com-ghes-2.21-stubs.json ] || pkgx wget -O ../../mappings/github.com-ghes-2.21-stubs.json https://raw.githubusercontent.com/tsirysndr/daggerverse/main/wiremock/mappings/github.com-ghes-2.21-stubs.json"])?
.with_exec(vec![
"grep -q wiremock: Procfile || echo -e 'wiremock: wiremock --port $WIREMOCK_PORT \\n' >> Procfile",
"grep -q wiremock: Procfile || echo -e 'wiremock: cd ../../ && wiremock --port $WIREMOCK_PORT \\n' >> Procfile",
])?
.stdout()?;

Expand Down

0 comments on commit 6d6c400

Please sign in to comment.