We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I believe file saved validation is currently incorrect since the merger of #1 from @aardschok.
Specifically when the scene is not saved the collector currently collects a single dot "." because of the path of normalization here:
config/polly/plugins/maya/publish/collect_current_file.py
Line 18 in 5dec881
Because:
import os os.path.normpath("") == "." # Result: True #
As such validation as currently done would pass here:
config/polly/plugins/publish/validate_file_saved.py
Line 14 in 241ca23
Remove the os.path.normpath in the Collector.
os.path.normpath
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
I believe file saved validation is currently incorrect since the merger of #1 from @aardschok.
Specifically when the scene is not saved the collector currently collects a single dot "." because of the path of normalization here:
config/polly/plugins/maya/publish/collect_current_file.py
Line 18 in 5dec881
Because:
As such validation as currently done would pass here:
config/polly/plugins/publish/validate_file_saved.py
Line 14 in 241ca23
Solution
Remove the
os.path.normpath
in the Collector.The text was updated successfully, but these errors were encountered: