Преглед на файлове

Removed throw statements

David Witham преди 3 години
родител
ревизия
686dfba74d
променени са 1 файла, в които са добавени 4 реда и са изтрити 2 реда
  1. 4 2
      backup_aragorn.psm1

+ 4 - 2
backup_aragorn.psm1

@@ -90,7 +90,8 @@ function check_disk($diskoverride=$false) {
     if ($last_updated.AddDays(20) -lt (Get-Date)) {
         if (!($diskoverride)) {
             Write-Host -ForegroundColor DarkRed "This disk was last used less than 3 weeks ago. Override with -diskoverride."
-            throw 'Unable to proceed'
+            #throw 'Unable to proceed'
+            Exit 1
         }
     }
 
@@ -98,7 +99,8 @@ function check_disk($diskoverride=$false) {
     # How much free space is there?
     if ($backupDisk.FreeSpace / 1gb -lt 20) {
         Write-Host -ForegroundColor DarkRed "There is less than 20gb free on the disk."
-        throw 'Unable to proceed'
+        #throw 'Unable to proceed'
+        Exit 1
     }