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
On Windows, we should look for files with extension first, or even never look for file without extensions. Often they are scripts with shebangs (#!) that Windows cannot handle (examples are mvn and gcovr)
It would be convenient to insert paths to be searched directly in find_program
Right now you have to write something like:
my_dir="C:\\foo\\bin"importqisys.envsetter# Prepend a dir to environ["PATH"]env_setter=qisys.envsetter.EnvSetter()
env_setter.prepend_to_path(my_dir)
env=env_setter.get_build_env()
foo_exe=qisys.command.find_program("foo", env=env)
mvn
andgcovr
)find_program
Right now you have to write something like:
It would be better to have:
The text was updated successfully, but these errors were encountered: