diff --git a/src/D2L.Bmx/UpdateHandler.cs b/src/D2L.Bmx/UpdateHandler.cs index efd1960b..6d4f249b 100644 --- a/src/D2L.Bmx/UpdateHandler.cs +++ b/src/D2L.Bmx/UpdateHandler.cs @@ -26,7 +26,7 @@ public async Task HandleAsync() { string downloadPath = Path.GetTempFileName(); string? currentFilePath = Environment.ProcessPath; - if ( string.IsNullOrEmpty( currentFilePath ) ) { + if( string.IsNullOrEmpty( currentFilePath ) ) { throw new BmxException( "BMX could not update" ); } string currentDirectory = Path.GetDirectoryName( currentFilePath )!;