-
Apparently the
You can see the last task failing with command not found at https://github.com/ssbarnea/x0/actions/runs/8523493674/job/23345891540?pr=1#step:5:1 What is quite interesting is that when playing with WSL on my own host, this worked (installed asdf using commands in the first snipped and tested that another invocation of wsl would have asdf available.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
That's correct and has not much to do with this action. |
Beta Was this translation helpful? Give feedback.
So as I said, do not use
.bashrc
but.profile
.If you replace
echo '. "$HOME/.asdf/asdf.sh"' >> ~/.bashrc
byecho '. "$HOME/.asdf/asdf.sh"' >> ~/.profile
it should work fine using login shell instead of interactive shell.