From 2aa4ae8b5803a0c7a2f640b7fbc4698df3bccdfb Mon Sep 17 00:00:00 2001 From: Tobias Reisinger Date: Thu, 23 May 2024 18:28:10 +0200 Subject: [PATCH] Fix wrong starting line (was for debugging) --- autoinstall/run_command.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoinstall/run_command.sh b/autoinstall/run_command.sh index 30142ef..b3b77b6 100644 --- a/autoinstall/run_command.sh +++ b/autoinstall/run_command.sh @@ -76,7 +76,7 @@ _handle_entry() { } file_lines=$(wc -l < "$file") -line=129 +line=0 while [[ $line -lt $file_lines ]]; do entry=$(tail -n +$line "$file" | awk '/^$/{exit} {print} ') entry_len=$(echo "$entry" | wc -l)