-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed the 'dirty' from version string.
Changing #defines in 'aquacontrol32.ino' made the version dirty which is undesired.
- Loading branch information
1 parent
10ab663
commit c9f819a
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
echo "const char * sketchVersion = \"$(git describe --tags --always --dirty)\";" > gitTagVersion.h | ||
echo "const char * sketchVersion = \"$(git describe --tags --always)\";" > gitTagVersion.h | ||
~/arduino-1.8.5/arduino --verify test.ino | ||
rm gitTagVersion.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
echo "const char * sketchVersion = \"$(git describe --tags --always --dirty)\";" > gitTagVersion.h | ||
~/arduino-1.8.5/arduino --upload test.ino --pref custom_DebugLevel=esp32_none | ||
echo "const char * sketchVersion = \"$(git describe --tags --always)\";" > gitTagVersion.h | ||
~/arduino-1.8.5/arduino --upload test.ino --pref custom_DebugLevel=esp32_info | ||
rm gitTagVersion.h |