From c830f0906587d253cc50091619e9296074c5d79d Mon Sep 17 00:00:00 2001 From: Alejandro R Mosteo Date: Wed, 14 Feb 2024 10:35:45 +0100 Subject: [PATCH] Show default temp folder in `alr version` (#1560) --- src/alr/alr-commands-version.adb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/alr/alr-commands-version.adb b/src/alr/alr-commands-version.adb index 6f5933fe..b4067483 100644 --- a/src/alr/alr-commands-version.adb +++ b/src/alr/alr-commands-version.adb @@ -5,6 +5,7 @@ with Alire.Index; with Alire.Index_On_Disk.Loading; with Alire.Milestones; with Alire.Paths.Vault; +with Alire.Platforms.Folders; with Alire.Properties; with Alire.Roots.Optional; with Alire.Toolchains; @@ -75,6 +76,8 @@ package body Alr.Commands.Version is .Append (Alire.Config.Edit.Cache_Path).New_Row; Table.Append ("vault folder:").Append (Paths.Vault.Path).New_Row; Table.Append ("build folder:").Append (Build_Path).New_Row; + Table.Append ("temp folder:") + .Append (Alire.Platforms.Folders.Temp).New_Row; Table.Append ("force flag:").Append (Alire.Force'Image).New_Row; Table.Append ("non-interactive flag:") .Append (CLIC.User_Input.Not_Interactive'Image).New_Row; -- 2.39.5