Skip to content

Commit 5238fb7

Browse files
committed
fix: --yes flag
1 parent e6b42bc commit 5238fb7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/lint-installed-example.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@ jobs:
4747
4848
- name: Install application (Hardhat with extension configuration)
4949
if: matrix.config == 'hardhat_with_extension'
50-
run: npx create-eth@latest --yes new_project_hardhat_with_extension -s hardhat -e scaffold-eth/create-eth-extensions:example
50+
run: npx --yes create-eth@latest new_project_hardhat_with_extension -s hardhat -e scaffold-eth/create-eth-extensions:example
5151

5252
- name: Install application (Foundry with extension configuration)
5353
if: matrix.config == 'foundry_with_extension'
5454
run: |
5555
export PATH="$HOME/.config/.foundry/bin:$PATH"
56-
npx create-eth@latest --yes new_project_foundry_with_extension -s foundry -e scaffold-eth/create-eth-extensions:example
56+
npx --yes create-eth@latest new_project_foundry_with_extension -s foundry -e scaffold-eth/create-eth-extensions:example
5757
5858
- name: Install application (No solidity framework with extension configuration)
5959
if: matrix.config == 'no_solidity_framework_with_extension'
60-
run: npx create-eth@latest --yes new_project_no_solidity_framework_with_extension -s none -e scaffold-eth/create-eth-extensions:example
60+
run: npx --yes create-eth@latest new_project_no_solidity_framework_with_extension -s none -e scaffold-eth/create-eth-extensions:example
6161

6262
- name: Run chain and deploy
6363
working-directory: new_project_${{ matrix.config }}

0 commit comments

Comments
 (0)