author | wenzelm |
Fri, 16 Sep 2022 20:54:56 +0200 | |
changeset 76177 | b847a9983784 |
parent 61826 | 6f9e5fb0683f |
child 80033 | 71d005ffa9fe |
permissions | -rwxr-xr-x |
47708 | 1 |
@echo off |
2 |
||
58640
37f852399a32
prefer original TEMP from Windows, e.g. relevant for Isabelle distribution within read-only directory (due to its bundled Cygwin and /tmp inside of it);
wenzelm
parents:
50831
diff
changeset
|
3 |
set TEMP_WINDOWS=%TEMP% |
47708 | 4 |
set HOME=%HOMEDRIVE%%HOMEPATH% |
5 |
set PATH=%CD%\bin;%PATH% |
|
61826
6f9e5fb0683f
hardwired LANG, to avoid sporadic surprises with local environments;
wenzelm
parents:
58640
diff
changeset
|
6 |
set LANG=en_US.UTF-8 |
47721
77d9881bc820
prevent change of directory, by pretending we are the "Command Here" utility;
wenzelm
parents:
47708
diff
changeset
|
7 |
set CHERE_INVOKING=true |
47735 | 8 |
|
9 |
echo This is the GNU Bash interpreter of Cygwin. |
|
10 |
echo Use command "isabelle" to invoke Isabelle tools. |
|
50831 | 11 |
"%CD%\contrib\cygwin\bin\bash" --login -i |