From a8711aca14c544eb368324101c718a57a2dee3b0 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 04:12:25 +0000 Subject: [PATCH 1/2] feat: Add configuration file for Makefile init tar --- config_file | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 config_file diff --git a/config_file b/config_file new file mode 100644 index 00000000..8ab4a5e0 --- /dev/null +++ b/config_file @@ -0,0 +1,2 @@ +VAR1=value1 +VAR2=value2 From bfaeb5026ebd8d80f7b69f46dcdf8693e478aa1d Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 04:13:55 +0000 Subject: [PATCH 2/2] feat: Updated Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 32495751..1133f936 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ init: sudo apt-get install -y curl git # Check for the existence of the configuration file before using it @if test ! -f 'config_file'; then \ - echo "Error: Configuration file not found"; \ + echo "Error: Configuration file 'config_file' not found in the root directory. Please ensure this file exists with the correct configurations."; \ exit 1; \ fi # If the configuration file exists, source it