Skip to content

Commit

Permalink
Fix an info message
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexRukhlin committed May 16, 2017
1 parent e7a8897 commit c108c59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/signing/finish.cmd
Expand Up @@ -13,7 +13,7 @@ set INDIR=%REPO_ROOT%\build\output\bin
set OUTDIR=%REPO_ROOT%\build\output\_packages
if exist "%OUTDIR%" rmdir /S /Q "%OUTDIR%"

echo Move signed CLC, TEE, and SDK archives to "%1"
echo Move signed CLC, TEE, and SDK archives to "%OUTDIR"
for /R "%INDIR%" %%i in (*-signed.zip) do call :move_signed %%i %OUTDIR%

goto :end
Expand All @@ -33,7 +33,7 @@ set FILEPATH=%~dp1
call :get_folder_name "!FILEPATH:~0,-1!"

mkdir "%2\%FILEFOLDER%"
move "%1" "%2\%FILEFOLDER%\%FILENAME%.zip"
move /Y "%1" "%2\%FILEFOLDER%\%FILENAME%.zip"

goto :eof

Expand Down

0 comments on commit c108c59

Please sign in to comment.