Skip to content

Commit

Permalink
setup orbstack
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Nov 1, 2023
1 parent 39d3764 commit 185c05a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions dist/setup-docker.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ export async function installDocker() {
return;
}
if (platform === "darwin") {
await exec("sh", [
"-c",
"HOMEBREW_NO_AUTO_UPDATE=1 brew install docker orbstack",
]);
await exec("sh", ["-c", "brew install docker orbstack"]);
await exec("sh", ["-c", "orb start"]);
return;
}
Expand Down
5 changes: 1 addition & 4 deletions src/setup-docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ export async function installDocker() {
}

if (platform === "darwin") {
await exec("sh", [
"-c",
"HOMEBREW_NO_AUTO_UPDATE=1 brew install docker orbstack",
]);
await exec("sh", ["-c", "brew install docker orbstack"]);
await exec("sh", ["-c", "orb start"]);
return;
}
Expand Down

0 comments on commit 185c05a

Please sign in to comment.