Skip to content

Commit

Permalink
fix #651 powershell: broken install when space in user path
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmueller committed Oct 11, 2021
1 parent 403a1d0 commit e652df5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/doctoolchain.bat
Expand Up @@ -28,13 +28,13 @@ cd /d %BASEDIR%

IF "%PATHTODOCS:~0,1%"=="." goto :relativePath

call %GRADLECMD% --project-cache-dir %BASEDIR%/.gradle "-PdocDir=%PATHTODOCS%" %params%
call "%GRADLECMD%" --project-cache-dir %BASEDIR%/.gradle "-PdocDir=%PATHTODOCS%" %params%

goto :end

:relativePath

call %GRADLECMD% --project-cache-dir %BASEDIR%/.gradle "-PdocDir=%WORKINGDIR%%PATHTODOCS%" %params%
call "%GRADLECMD%" --project-cache-dir %BASEDIR%/.gradle "-PdocDir=%WORKINGDIR%%PATHTODOCS%" %params%

goto :end

Expand Down
3 changes: 3 additions & 0 deletions changelog.adoc
Expand Up @@ -13,6 +13,9 @@ and this project tries to adhere to https://semver.org/spec/v2.0.0.html[Semantic

=== fixed

2021-10-11::
* fix https://github.com/docToolchain/docToolchain/issues/651[#651 - powershell: broken install when space in user path]

== 2.0.1 - 2021-10-06

=== added
Expand Down

0 comments on commit e652df5

Please sign in to comment.