From 4d41ac8b0eb27aa5984735137c19709cd1970054 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Thu, 23 Mar 2023 04:17:50 +0000 Subject: [PATCH] add line to make the /output directory in separator.sh script. Because the /output is an empty directory (on a fresh clone of the repo.), the Python scripts don't have a place to save the charts. This addition just makes sure the code runs smoother on freshly cloned repository. --- separator.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/separator.sh b/separator.sh index 6c098b0..a3acb6f 100755 --- a/separator.sh +++ b/separator.sh @@ -95,3 +95,4 @@ done dailyBreakdown "1"; # Light Meter 1 dailyBreakdown "2"; # Light Meter 2 removeExcessData; +mkdir output # For storing charts and stuff later (with Python scripts).