Skip to content

Commit

Permalink
Added env vars and tilde expansion for esbmc_path config option.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yiannis128 committed Jan 31, 2024
1 parent a2dcc23 commit bed04a4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions esbmc_ai_lib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,8 @@ def load_config(file_path: str) -> None:
"esbmc_path",
esbmc_path,
)
# Expand variables and tilde.
esbmc_path = os.path.expanduser(os.path.expandvars(esbmc_path))

# Load the AI data from the file that will command the AI for all modes.
printv("Initializing AI data")
Expand Down

0 comments on commit bed04a4

Please sign in to comment.