mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-01 09:49:45 +00:00
Tweaked docs_gen.py to look for git and openscad in PATH.
This commit is contained in:
parent
8712d246c9
commit
503829f2c7
2 changed files with 3 additions and 3 deletions
|
@ -20,9 +20,9 @@ from PIL import Image, ImageChops
|
|||
|
||||
if platform.system() == "Darwin":
|
||||
OPENSCAD = "/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD"
|
||||
GIT = "/usr/local/bin/git"
|
||||
GIT = "git"
|
||||
else:
|
||||
OPENSCAD = "/usr/local/bin/openscad"
|
||||
OPENSCAD = "openscad"
|
||||
GIT = "git"
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
BOSL_VERSION = [2,0,58];
|
||||
BOSL_VERSION = [2,0,59];
|
||||
|
||||
|
||||
// Section: BOSL Library Version Functions
|
||||
|
|
Loading…
Reference in a new issue