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 2e59d01 commit 09063ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/setup-docker.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export async function installDocker() {
return;
}
if (platform === "darwin") {
await exec("brew", ["update"]);
await exec("sh", ["-c", "brew install docker orbstack"]);
await exec("sh", ["-c", "brew install orbstack --cask"]);
await exec("sh", ["-c", "orb start"]);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/setup-docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ export async function installDocker() {
}

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

0 comments on commit 09063ad

Please sign in to comment.