-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows support broken (CMD to bash breaks PATH) #49
Comments
The problem is that *.bat script logic is so limited (or in other words such a pile of crap) that I can not properly filter the path to remove any previous entries from a |
KISS would be to drop |
Hi @hohwille, I experienced a similar problem in the newest version of the framework when running Git Bash from the IntelliJ shipped with devon. Upon starting the shell my
Strangely, unix-like tools like
This shell becomes thus unusable. My workaround for now (without analysing in detail) is to comment out the lines manipulating devon version 2024.01.001 |
Due to the fix of #27 I broke the windows support unfortunately.
When devon is called with additional params in CMD then the BAT script delegates to the devon bash scripts in git-bash. As the variables from windows CMD are then passed to bash also
DEVON_OLD_PATH
remains set. This causes thedevon
bash script to reset thePATH
toDEVON_OLD_PATH
what unsets the "unix" path in bash sodirname
,basename
,cp
,mkdir
, etc. are all no longer available and scripts fail.The text was updated successfully, but these errors were encountered: