From 160836ba44c2f17268773a865915a000900eb011 Mon Sep 17 00:00:00 2001 From: Alejandro R Mosteo Date: Mon, 4 May 2020 13:41:50 +0200 Subject: [PATCH] Fix tabulation in generated project files (#387) --- src/alr/alr-commands-init.adb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/alr/alr-commands-init.adb b/src/alr/alr-commands-init.adb index 3b5c9d4c..68b77eea 100644 --- a/src/alr/alr-commands-init.adb +++ b/src/alr/alr-commands-init.adb @@ -68,13 +68,13 @@ package body Alr.Commands.Init is Put_Line (" for Library_Version use ""0.0.0"";"); Put_New_Line; end if; - Put_Line (" for Source_Dirs use (""src"");"); - Put_Line (" for Object_Dir use ""obj"";"); + Put_Line (" for Source_Dirs use (""src"");"); + Put_Line (" for Object_Dir use ""obj"";"); if For_Library then - Put_Line (" for Library_Dir use ""lib"";"); + Put_Line (" for Library_Dir use ""lib"";"); else - Put_Line (" for Exec_Dir use ""bin"";"); - Put_Line (" for Main use (""" & Lower_Name & ".adb"");"); + Put_Line (" for Exec_Dir use ""bin"";"); + Put_Line (" for Main use (""" & Lower_Name & ".adb"");"); end if; Put_New_Line; Put_Line (" package Builder is"); -- 2.39.5