-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
10 changes: 5 additions & 5 deletions
10
...ci/plugins/docker/commons/credentials/DockerServerCredentialsBindingTest/basics-step1.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
REM check existence of the credentials dir | ||
if not exist %DOCKER_CERT_PATH% exit /B 1 | ||
if not exist "%DOCKER_CERT_PATH%" exit /B 1 | ||
|
||
REM check existence of the certificate files | ||
if not exist %DOCKER_CERT_PATH%\key.pem exit /B 1 | ||
if not exist %DOCKER_CERT_PATH%\cert.pem exit /B 1 | ||
if not exist %DOCKER_CERT_PATH%\ca.pem exit /B 1 | ||
if not exist "%DOCKER_CERT_PATH%\key.pem" exit /B 1 | ||
if not exist "%DOCKER_CERT_PATH%\cert.pem" exit /B 1 | ||
if not exist "%DOCKER_CERT_PATH%\ca.pem" exit /B 1 | ||
|
||
REM keep location of the certificate dir for the next step | ||
echo %DOCKER_CERT_PATH% > cert-path | ||
echo "%DOCKER_CERT_PATH%" > cert-path |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...ci/plugins/docker/commons/credentials/DockerServerCredentialsHandlerTest/basics-step1.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
REM check existence of the credentials dir | ||
if not exist %DOCKER_CERT_PATH% exit /B 1 | ||
if not exist "%DOCKER_CERT_PATH%" exit /B 1 | ||
|
||
REM check existence of the certificate files | ||
if not exist %DOCKER_CERT_PATH%\key.pem exit /B 1 | ||
if not exist %DOCKER_CERT_PATH%\cert.pem exit /B 1 | ||
if not exist %DOCKER_CERT_PATH%\ca.pem exit /B 1 | ||
if not exist "%DOCKER_CERT_PATH%\key.pem" exit /B 1 | ||
if not exist "%DOCKER_CERT_PATH%\cert.pem" exit /B 1 | ||
if not exist "%DOCKER_CERT_PATH%\ca.pem" exit /B 1 | ||
|
||
REM keep location of the certificate dir for the next step | ||
echo %DOCKER_CERT_PATH% > cert-path | ||
echo "%DOCKER_CERT_PATH%" > cert-path |