Skip to content

Commit

Permalink
update rimraf to shx
Browse files Browse the repository at this point in the history
  • Loading branch information
karooolis committed Aug 29, 2024
1 parent baa75ab commit 3c5b606
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/local-explorer/mprocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ procs:
shell: anvil --base-fee 0 --block-time 2
indexer:
cwd: packages/contracts
shell: rimraf $SQLITE_FILENAME && pnpm sqlite-indexer
shell: shx rm -rf $SQLITE_FILENAME && pnpm sqlite-indexer
env:
RPC_HTTP_URL: "http://127.0.0.1:8545"
FOLLOW_BLOCK_TAG: "latest"
Expand Down
2 changes: 1 addition & 1 deletion templates/phaser/mprocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ procs:
shell: anvil --base-fee 0 --block-time 2
indexer:
cwd: packages/contracts
shell: rimraf $SQLITE_FILENAME && pnpm sqlite-indexer
shell: shx rm -rf $SQLITE_FILENAME && pnpm sqlite-indexer
env:
RPC_HTTP_URL: "http://127.0.0.1:8545"
FOLLOW_BLOCK_TAG: "latest"
Expand Down
2 changes: 1 addition & 1 deletion templates/react-ecs/mprocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ procs:
shell: anvil --base-fee 0 --block-time 2
indexer:
cwd: packages/contracts
shell: rimraf $SQLITE_FILENAME && pnpm sqlite-indexer
shell: shx rm -rf $SQLITE_FILENAME && pnpm sqlite-indexer
env:
RPC_HTTP_URL: "http://127.0.0.1:8545"
FOLLOW_BLOCK_TAG: "latest"
Expand Down
2 changes: 1 addition & 1 deletion templates/react/mprocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ procs:
shell: anvil --base-fee 0 --block-time 2
indexer:
cwd: packages/contracts
shell: rimraf $SQLITE_FILENAME && pnpm sqlite-indexer
shell: shx rm -rf $SQLITE_FILENAME && pnpm sqlite-indexer
env:
RPC_HTTP_URL: "http://127.0.0.1:8545"
FOLLOW_BLOCK_TAG: "latest"
Expand Down
2 changes: 1 addition & 1 deletion templates/threejs/mprocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ procs:
shell: anvil --base-fee 0 --block-time 2
indexer:
cwd: packages/contracts
shell: rimraf $SQLITE_FILENAME && pnpm sqlite-indexer
shell: shx rm -rf $SQLITE_FILENAME && pnpm sqlite-indexer
env:
RPC_HTTP_URL: "http://127.0.0.1:8545"
FOLLOW_BLOCK_TAG: "latest"
Expand Down
2 changes: 1 addition & 1 deletion templates/vanilla/mprocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ procs:
shell: anvil --base-fee 0 --block-time 2
indexer:
cwd: packages/contracts
shell: rimraf $SQLITE_FILENAME && pnpm sqlite-indexer
shell: shx rm -rf $SQLITE_FILENAME && pnpm sqlite-indexer
env:
RPC_HTTP_URL: "http://127.0.0.1:8545"
FOLLOW_BLOCK_TAG: "latest"
Expand Down

0 comments on commit 3c5b606

Please sign in to comment.