Threadscope's gettext.sh file interferes with git on Windows -
when run git commands, i'm noticing strange messages wrt totally unrelated program, namely threadscope, use obtaining information on parallel haskell programs.
git stash ': not valid identifier/threadscope-0.2.2/bin/gettext.sh: line 90: export: `dashless ': not valid identifier/threadscope-0.2.2/bin/gettext.sh: line 90: export: `usage ': not valid identifier/threadscope-0.2.2/bin/gettext.sh: line 90: export: `stash_msg
i'm not sure causing this. seems benign, bit annoying. seems related program 'gettext.exe' unable find information online on does.
the line 90 in question in gettext.sh is
eval_gettext () { gettext "$1" | (export path `envsubst --variables "$1"`; envsubst "$1") }
could me getting rid of these messages in right way?
i'm using window 10. installed threadscope downloading binaries https://wiki.haskell.org/threadscope#installing_threadscope , placing them in program files folder.
try setting (for testing) simplified path in cmd session
set path=c:\windows\system32;c:\windows;c:\windows\system32\wbem;c:\windows\system32\windowspowershell\v1.0\ set gh=c:\path\to\git set path=%gh%\bin;%gh%\usr\bin;%gh%\mingw64\bin;%path% set path=%path%;/path/to/threadscope/bin
meaning: set git first, threadscope in path: see if both running better in new context.
Comments
Post a Comment