From c02aab84039efd20f877168460127b16b942511c Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Fri, 13 May 2022 12:18:26 +0200 Subject: [PATCH] fix wrong cpp file in script --- scripts/create_version_tag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/create_version_tag.py b/scripts/create_version_tag.py index 5b37c82..d05bba2 100755 --- a/scripts/create_version_tag.py +++ b/scripts/create_version_tag.py @@ -8,7 +8,7 @@ current_year = int(str(today.isocalendar()[0])[2:]) current_week = int(today.isocalendar()[1]) version = None -with open("src/LoRa_APRS_iGate.cpp") as f: +with open("src/LoRa_APRS_Tracker.cpp") as f: for line in f: if line.startswith("#define VERSION"): version = line.strip().split(" ")[-1].replace('"', "")