Fixed a disk space check issue in Linux

This commit is contained in:
MikeMaximus
2019-05-31 19:44:55 -06:00
parent e7e2e86a8e
commit 23102a90eb
2 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -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
+5 -1
View File
@@ -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