Brings over the functionality in https://github.com/FreeCAD/FreeCAD-Bundle to build Linux AppImage, macOS .dmg, and Windows 7z releases. This version also creates a tagged release for each build, creating an archive of the weekly builds as well as the ability to easily tie each build to a git commit. This will make running 'git bisect' easy to identify sources of regressions.
14 lines
547 B
Diff
14 lines
547 B
Diff
diff --git a/src/Tools/SubWCRev.py b/src/Tools/SubWCRev.py
|
|
index 1f3f0a436343..c314003736f1 100644
|
|
--- a/src/Tools/SubWCRev.py
|
|
+++ b/src/Tools/SubWCRev.py
|
|
@@ -523,7 +523,7 @@ def main():
|
|
inp = open("%s/src/Build/Version.h.in" % (bindir))
|
|
lines = inp.readlines()
|
|
inp.close()
|
|
- lines = i.writeVersion(lines)
|
|
+ #lines = i.writeVersion(lines)
|
|
out = open("%s/src/Build/Version.h.out" % (bindir), "w")
|
|
out.writelines(lines)
|
|
out.write("\n")
|