You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code checks paths for "validity" by checking the return value of validate_file to ensure that it is 0, but a valid Windows filepath on a Windows system will return 2, making it so that this library cannot run on a Windows host (either for local development or via Windows Server).
Steps To Reproduce
Install on a Windows host
Attempt to use functionality that relies on validate_file, such as the asset loader
Additional Information
Should replace the validate_file check to ensure it returns either 0 or 2
The text was updated successfully, but these errors were encountered:
Description of the bug
The code checks paths for "validity" by checking the return value of
validate_file
to ensure that it is0
, but a valid Windows filepath on a Windows system will return2
, making it so that this library cannot run on a Windows host (either for local development or via Windows Server).Steps To Reproduce
validate_file
, such as the asset loaderAdditional Information
Should replace the
validate_file
check to ensure it returns either0
or2
The text was updated successfully, but these errors were encountered: