From 823092ac68b1b0f421b58cdecfdc199db8975603 Mon Sep 17 00:00:00 2001
From: Garth Minette <gminette@gmail.com>
Date: Fri, 26 Feb 2021 18:01:34 -0800
Subject: [PATCH] Fix for empty commit in workflow.

---
 .github/workflows/docsgen.yml | 6 ++----
 involute_gears.scad           | 2 +-
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/docsgen.yml b/.github/workflows/docsgen.yml
index 8a3d736..bb854ca 100644
--- a/.github/workflows/docsgen.yml
+++ b/.github/workflows/docsgen.yml
@@ -41,8 +41,7 @@ jobs:
         git config user.name github-actions
         git config user.email github-actions@github.com
         git add --all
-        git commit -m "Wiki docs auto-regen."
-        git push
+        git commit -m "Wiki docs auto-regen." && git push || true
 
     - name: Bump Release Version
       run: |
@@ -51,6 +50,5 @@ jobs:
         git config user.name github-actions
         git config user.email github-actions@github.com
         git add version.scad
-        git commit -m "Bump release version." 
-        git push
+        git commit -m "Bump release version." && git push || true
 
diff --git a/involute_gears.scad b/involute_gears.scad
index 6855340..3f007ad 100644
--- a/involute_gears.scad
+++ b/involute_gears.scad
@@ -1209,7 +1209,7 @@ module worm(
 //   worm_gear(pitch=5, teeth=36, worm_diam=30, worm_starts=4);
 // Example: Metric Worm Gear
 //   worm_gear(mod=2, teeth=32, worm_diam=30, worm_starts=1);
-// Example(Anim,Frames=4,FrameMS=125,VPD=225,VPT=[-15,0,0]): Meshing Worm and Gear
+// Example(Anim,Frames=4,FrameMS=125,VPD=220,VPT=[-15,0,0]): Meshing Worm and Gear
 //   $fn=36;
 //   pitch = 5; starts = 4;
 //   worm_diam = 30; worm_length = 50;