fix build for scriptcs 0.13
adamralph opened this issue · 5 comments
Fails due to scriptcs/scriptcs#912, which can be worked around by running scriptcs -install
separately before scriptcs ./baufile.csx
.
Also fails because baufile.csx
is looking in packages/
instead of scriptcs_packages
.
*nix build needs to change to download a new blob. The one it is using is based on scriptcs 0.10.
I am able to run the script and install in one go using the -script
parameter: scriptcs -script baufile.csx -I
That's another way to work around it. Note that it is not the -script
parameter that is helping you there, it's the -I
(install) parameter.
It is also a better way, so I've updated the workaround in the issue desc to use it
Hmmm... I take it back. scriptcs -script baufile.csx -I
doesn't fix it, and I just looked through the code and confirmed that there is no way it could fix it. The place where I tried it out initially was working successfully for other reasons.
I'm fairly convinced the only workaround is run a separate scriptcs -install
first.
Going to make an attempt at this, continuing your work.