Skip to content
Snippets Groups Projects
Verified Commit 48c54bf3 authored by Julian Ospald's avatar Julian Ospald :tea:
Browse files

Don't unconditionally adjust .bashrc on windows

parent 51da1578
No related branches found
No related tags found
1 merge request!168Don't unconditionally adjust .bashrc on windows
Pipeline #40526 canceled
......@@ -293,16 +293,7 @@ ask_bashrc() {
read -r bashrc_answer </dev/tty
else
# On windows .bashrc isn't an important user config, so we adjust it
# always. On other platforms, let's be a bit more conservative.
case "${plat}" in
MSYS*|MINGW*)
return 1
;;
*)
return 0
;;
esac
return 0
fi
case $bashrc_answer in
[Pp]* | "")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment