-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug fix #21
base: master
Are you sure you want to change the base?
bug fix #21
Conversation
The bug is real, thanks for the PR! |
|
||
|
||
wbuildPath = pathlib.Path(wbuild.__file__).parent | ||
shutil.copytree(str(wbuildPath) + "/html/lib", libDir) ### quick fix for line below |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be just htmlOutputPath + '/lib' instead of wbuildPath + "/html/lib"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think that's correct, since we want to copy from wbuildPath/..
to libDir
(= htmlOutputPath + "/lib"
)
#fill the HTML template with the constructed tag structure | ||
wbuildPath = pathlib.Path(wbuild.__file__).parent | ||
|
||
template = open(str(wbuildPath / "template.html")).read() | ||
template = open(str(wbuildPath / "html/template.html")).read() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See below, analogous
These changes are already included in the latest version of wBuild, and they seem to be fully functional, so this PR can be closed. @kTakumo @andradesalazar @stefanches7 |
Index was not created because of small path error and copy error for /lib dir