From 18aeedef0a348dfdaf0ca86f8fadf04cdec9e56f Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 2 Aug 2018 08:25:15 -0700 Subject: [PATCH] Hard code the path the the bash we want to use. (#2400) The jobs seem to do some set up starting with cygwin that ignore the PATH. --- .kokoro/build.bat | 2 +- .kokoro/builddocs.bat | 2 +- .kokoro/cleantestdata.bat | 2 +- .kokoro/release.bat | 2 +- .kokoro/runintegrationtests.bat | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.kokoro/build.bat b/.kokoro/build.bat index db05d472d693..3858469fda43 100644 --- a/.kokoro/build.bat +++ b/.kokoro/build.bat @@ -1,4 +1,4 @@ :: See documentation in type-shell-output.bat cd /d %~dp0 -bash build.sh \ No newline at end of file +"C:\Program Files\Git\bin\bash.exe" build.sh \ No newline at end of file diff --git a/.kokoro/builddocs.bat b/.kokoro/builddocs.bat index 0d04a24b1389..9be0f6d77eef 100644 --- a/.kokoro/builddocs.bat +++ b/.kokoro/builddocs.bat @@ -1,4 +1,4 @@ :: See documentation in type-shell-output.bat cd /d %~dp0 -bash builddocs.sh \ No newline at end of file +"C:\Program Files\Git\bin\bash.exe" builddocs.sh \ No newline at end of file diff --git a/.kokoro/cleantestdata.bat b/.kokoro/cleantestdata.bat index b77d7b43596e..53685c7a45df 100644 --- a/.kokoro/cleantestdata.bat +++ b/.kokoro/cleantestdata.bat @@ -1,4 +1,4 @@ :: See documentation in type-shell-output.bat cd /d %~dp0 -bash cleantestdata.sh \ No newline at end of file +"C:\Program Files\Git\bin\bash.exe" cleantestdata.sh \ No newline at end of file diff --git a/.kokoro/release.bat b/.kokoro/release.bat index 3cc396969667..17b93804c68c 100644 --- a/.kokoro/release.bat +++ b/.kokoro/release.bat @@ -1,4 +1,4 @@ :: See documentation in type-shell-output.bat cd /d %~dp0 -bash release.sh \ No newline at end of file +"C:\Program Files\Git\bin\bash.exe" release.sh \ No newline at end of file diff --git a/.kokoro/runintegrationtests.bat b/.kokoro/runintegrationtests.bat index 9f93ac07d0ad..e55dfb914521 100644 --- a/.kokoro/runintegrationtests.bat +++ b/.kokoro/runintegrationtests.bat @@ -1,4 +1,4 @@ :: See documentation in type-shell-output.bat cd /d %~dp0 -bash runintegrationtests.sh \ No newline at end of file +"C:\Program Files\Git\bin\bash.exe" runintegrationtests.sh \ No newline at end of file