Skip to content

Commit

Permalink
Fix typo (#2670)
Browse files Browse the repository at this point in the history
* Fix typo

* Remove double space
  • Loading branch information
rajbos authored Oct 9, 2023
1 parent a5cd1ba commit 36e37a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Misc/layoutroot/run-helper.cmd.template
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
SET UPDATEFILE=update.finished
"%~dp0\bin\Runner.Listener.exe" run %*

rem using `if %ERRORLEVEL% EQU N` insterad of `if ERRORLEVEL N`
rem using `if %ERRORLEVEL% EQU N` instead of `if ERRORLEVEL N`
rem `if ERRORLEVEL N` means: error level is N or MORE

if %ERRORLEVEL% EQU 0 (
Expand Down
2 changes: 1 addition & 1 deletion src/Runner.Listener/Configuration/CredentialManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public VssCredentials LoadCredentials()

if (!store.HasCredentials())
{
throw new InvalidOperationException("Credentials not stored. Must reconfigure.");
throw new InvalidOperationException("Credentials not stored. Must reconfigure.");
}

CredentialData credData = store.GetCredentials();
Expand Down

0 comments on commit 36e37a0

Please sign in to comment.