Skip to content

Commit

Permalink
fix(fw): EVM binary pattern for windows (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
ducnbh authored Jul 3, 2024
1 parent 4b93082 commit 891a611
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ This guide installs stable versions of the required external (go-ethereum) `evm`
cd execution-spec-tests
python3 -m venv ./venv/
source ./venv/bin/activate
pip install -e '.[docs,lint,test]'
pip install -e .[docs,lint,test]
```

3. Verify the installation:
Expand Down
2 changes: 1 addition & 1 deletion src/evm_transition_tool/geth.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class GethTransitionTool(TransitionTool):
"""

default_binary = Path("evm")
detect_binary_pattern = compile(r"^evm version\b")
detect_binary_pattern = compile(r"^evm(.exe)? version\b")
t8n_subcommand: Optional[str] = "t8n"
statetest_subcommand: Optional[str] = "statetest"
blocktest_subcommand: Optional[str] = "blocktest"
Expand Down

0 comments on commit 891a611

Please sign in to comment.