From 23102a90ebe7353f0aacb226b39c27dbecb96be8 Mon Sep 17 00:00:00 2001 From: MikeMaximus Date: Fri, 31 May 2019 19:44:55 -0600 Subject: [PATCH] Fixed a disk space check issue in Linux --- GBM/Managers/mgrCommon.vb | 2 +- GBM/readme.txt | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/GBM/Managers/mgrCommon.vb b/GBM/Managers/mgrCommon.vb index 4dfe00f..bb26c82 100644 --- a/GBM/Managers/mgrCommon.vb +++ b/GBM/Managers/mgrCommon.vb @@ -451,7 +451,7 @@ Public Class mgrCommon Try prsdf = New Process prsdf.StartInfo.FileName = "/bin/df" - prsdf.StartInfo.Arguments = sPath + prsdf.StartInfo.Arguments = """" & sPath & """" prsdf.StartInfo.UseShellExecute = False prsdf.StartInfo.RedirectStandardOutput = True prsdf.StartInfo.CreateNoWindow = True diff --git a/GBM/readme.txt b/GBM/readme.txt index 54d4b59..b91b7fe 100644 --- a/GBM/readme.txt +++ b/GBM/readme.txt @@ -19,6 +19,10 @@ All Platforms: - Made improvements to the Start-Up Wizard. - The default backup location now includes a "Game Backup Monitor" sub-folder. - The wizard will now automatically create the backup location if it doesn't exist. - - You can no longer attempt to Import Backup Files during the Start-Up Wizard. + - You can no longer attempt to Import Backup Files during the Start-Up Wizard. + +Linux: + +- Fixed a bug that caused the "Available Disk Space" check to fail if the backup folder contained one or more spaces. The entire version history of GBM releases is available at http://mikemaximus.github.io/gbm-web/versionhistory.html \ No newline at end of file