You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, if you attempt to use the starter kit outside of a Git repo you will get the following result:
cbmc % cbmc-starter-kit-setup
Traceback (most recent call last):
File "/usr/local/bin/cbmc-starter-kit-setup", line 8, in <module>
sys.exit(main())
File "/usr/local/Cellar/cbmc-starter-kit/2.4/libexec/lib/python3.8/site-packages/cbmc_starter_kit/setup.py", line 73, in main
source_root = repository.repository_root()
File "/usr/local/Cellar/cbmc-starter-kit/2.4/libexec/lib/python3.8/site-packages/cbmc_starter_kit/repository.py", line 52, in repository_root
raise UserWarning(f"No git repository contains {cwd}") from None
UserWarning: No git repository contains .
But, the starter kit seems to be becoming the default easy way for all users to get started using CBMC, and in this application the git dependency seems like an unneeded speed bump. If you are just starting out with CBMC or looking to evaluate it then the starter-kit should get you started fast.
Also, there are people out there who want to use CBMC with other version control systems. It would be a pitty of those people couldn't use the starter kit.
The text was updated successfully, but these errors were encountered:
Let's add command line options --git-root and --src-root flags to specify them from command line. The sequence of defaults is --git-root if specified else search for git root else None. The sequence of defaults is --src-root if specified else git root else None.
Right now, if you attempt to use the starter kit outside of a Git repo you will get the following result:
But, the starter kit seems to be becoming the default easy way for all users to get started using CBMC, and in this application the git dependency seems like an unneeded speed bump. If you are just starting out with CBMC or looking to evaluate it then the starter-kit should get you started fast.
Also, there are people out there who want to use CBMC with other version control systems. It would be a pitty of those people couldn't use the starter kit.
The text was updated successfully, but these errors were encountered: