Skip to content

Commit

Permalink
Merge pull request #61 from lora-aprs/refactor-github-build
Browse files Browse the repository at this point in the history
fix wrong cpp file in script
  • Loading branch information
peterus committed May 13, 2022
2 parents 9cf7d58 + c02aab8 commit c1f0e05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/create_version_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
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('"', "")
Expand Down

0 comments on commit c1f0e05

Please sign in to comment.