Skip to content

Commit

Permalink
dont await main daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
elvece committed Nov 23, 2022
1 parent ccbe0a3 commit 6d00020
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/procedures/main.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { types as T, util } from "../deps.ts";

// deno-lint-ignore require-await
export const main: T.ExpectedExports.main = async (effects) => {
await effects.runDaemon(
return effects.runDaemon(
{
command: "docker_entrypoint.sh",
args: [],
},
).wait();
return util.ok;
};

0 comments on commit 6d00020

Please sign in to comment.