Hello, I'm trying to implement the auto-save script that is mentioned in the best practice but under docker and I've some issues when trying to call the git-auto-commit.bat routine.
I already did the initial commit to GitLab but when I try to call the routine, it gives an error as the file is not found.
this is my update script content:
import time
filePath = "data/projects/tags.json"
system.tag.exportTags(filePath=filePath, tagPaths=["[default]"])
time.sleep(5)
system.util.execute(['data/git-auto-commit.sh'])
but I'm getting this error:
so I undersand that maybe I need to provide some extra permissions or credentials but I don't find how to do it.
thanks in advance!
kind regards,
MF