Skip to content
This repository has been archived by the owner on Jun 5, 2019. It is now read-only.

Update script to dequote parameter #523

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build_solution.cmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off
setlocal
call setenv_%1 %2
call setenv_%1 %~2
cd Solutions\%3
msbuild /flp:verbosity=detailed /clp:verbosity=minimal %~4
endlocal&&exit /B %ERRORLEVEL%
endlocal&&exit /B %ERRORLEVEL%
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why did this line change? Seems unnecessary.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That line hasn't changed. I've edited the file directly on GitHub. What that icon at the end is telling you is that the file is missing the empty line that Github requires to make file comparisons.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting, never seen that one before...