Topher
Topher
I just noticed the gitbash plugin, but I can't seem to get it to work. No matter what I do I get: `C:\Users\hughetop\AppData\Local\Temp\rez_context_b1y1cklv\rez-shell.sh: line 5: c:\program: No such file or...
Interesting, I tried using that DOS shortpath and it got a different error. So my `find_executable` is just: `return r'C:\PROGRA~1\Git\bin\bash.exe'.replace('\\', '\\\\')` and it'll recognize gitbash, but it doesn't seem to...
For what it's worth, I've decided to look into Cmder which extends cmd with bash-like commands, rather than try to get git-bash to work. I've made a cmder-rez plugin, which...
It makes sense to me, I've just decided to move away from gitbash so it's not as relevant for me anymore.
This sounds similar to what we do, but perhaps more complex. I already saw someone suggest saving the resolve to a .rxt file and then loading that to get _exactly_...
I have not gotten the fail graph to work on osx, which made it difficult to debug. I'll see what I can do on that.
Update: I still can't get a graph, but it seems to break if the offending package is later alphabetically. My basic "cool_package" requres `['python-3', 'Pillow', 'PySide2', 'zzz']`, there is no...
If you're using python 3.8, I highly suggest you update to python 3.9+ to follow the VFX platform. Now the PySide2 problem: I've seen this too, and the only way...
That is set to True for our rez config because most of the time we want packages to cache. What I'm trying out now is setting the 'cachable' attribute in...
Right, but aside from a few specific packages, I want most to cache by default. I'm already handling those special cases in their own package.py files, I just want to...