From 00ff6f7c399670a76efffb91276dea2633cc130c Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Thu, 20 Oct 2022 17:09:17 +0200 Subject: installer: Add a missing confirmation page before formatting. This is a follow-up of: * gnu/installer/newt/partition.scm (run-label-page): Add a confirmation page when dealing with an EFI installation. --- gnu/installer/newt/partition.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu') diff --git a/gnu/installer/newt/partition.scm b/gnu/installer/newt/partition.scm index 86607a8380..37656696c1 100644 --- a/gnu/installer/newt/partition.scm +++ b/gnu/installer/newt/partition.scm @@ -108,7 +108,7 @@ (define (run-label-page button-text button-callback) "Run a page asking the user to select a partition table label." ;; Force the GPT label if UEFI is supported. (if (efi-installation?) - "gpt" + ((run-label-confirmation-page button-callback) "gpt") (run-listbox-selection-page #:info-text (G_ "Select a new partition table type. \ Be careful, all data on the disk will be lost.") -- cgit v1.2.3