Skip to content

Commit f43e835

Browse files
committed
Better missing npx fallback option
1 parent 171195f commit f43e835

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eburger/main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -169,11 +169,11 @@ def main():
169169
)
170170
except FileNotFoundError:
171171
run_command(
172-
construct_sourceable_nvm_string("npx hardhat clean"),
172+
"./node_modules/.bin/hardhat clean",
173173
directory=settings.project_root,
174174
)
175175
run_command(
176-
construct_sourceable_nvm_string("npx hardhat compile --force"),
176+
"./node_modules/.bin/hardhat compile --force",
177177
directory=settings.project_root,
178178
live_output=args.debug,
179179
)

0 commit comments

Comments
 (0)