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
There is no way to install templates from a remote tarball
Since we [sc. Rancher Desktop] can't rely on git being installed, we need to install using --dir from a local directory because there is no option to install from a remote tarball like this:
That means we need to download the file ourselves, unpack it into a temporary directory, install from there, and then remove the temporary directory again.
Since we are doing this from a shell script, it means we need curl or wget, neither of which are guaranteed to be installed.
The text was updated successfully, but these errors were encountered:
Thank you! This will simplify our setup-spin logic, so we no longer need to hunt for wget or curl. Too late for 1.17.0, but I created a GitHub issue as a reminder.
The script was not properly cleaning up the temp directory inside WSL2 distros. So getting rid of that code is better than having to figure out what was wrong with it (things get confusing when you manipulate the same directory both on the host, and through the 9p mount).
Broken out from #2555 @jandubois:
The text was updated successfully, but these errors were encountered: