Skip to content

Commit

Permalink
try installing gas-tank
Browse files Browse the repository at this point in the history
  • Loading branch information
holic committed Apr 17, 2024
1 parent 9ae2be0 commit bdf954c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/account-kit/cli/utils/deployGasTank.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ export async function deployGasTank() {
return;
}

console.log("Installing gas-tank dependencies.");
const result = await $({ cwd: gasTankPath })`pnpm install`;
if (result.failed) {
console.log(result.stderr);
}

const expectedAddress = worlds[31337]?.address;
console.log(`Checking for GasTank at ${expectedAddress}.`);
if (expectedAddress) {
Expand Down

0 comments on commit bdf954c

Please sign in to comment.