We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug If a path is source from /home/linuxbrew in zsh. Toolbox failed to source it. Even though host system can.
/home/linuxbrew
zsh
Steps how to reproduce the behaviour
linuxbrew
brew
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
~/.zsh
source ~/.zshrc
toolbox enter
toolbox
/home/username22/.zshrc:25: no such file or directory: /home/linuxbrew/.linuxbrew/bin/brew
Expected behaviour toolbox container should be able to source path
Actual behaviour toolbox can't source the path and throws a error.
Output of toolbox --version (v0.0.90+) toolbox version 0.0.99.5
toolbox --version
toolbox version 0.0.99.5
Toolbx package info (rpm -q toolbox) toolbox-0.0.99.5-11.fc40.x86_64
rpm -q toolbox
toolbox-0.0.99.5-11.fc40.x86_64
Output of podman version
podman version
Client: Podman Engine Version: 5.1.1 API Version: 5.1.1 Go Version: go1.22.3 Built: Tue Jun 4 06:00:00 2024 OS/Arch: linux/amd64
Podman package info (rpm -q podman) podman-5.1.1-1.fc40.x86_64
rpm -q podman
podman-5.1.1-1.fc40.x86_64
Info about your OS Fedora Kinoite 40
The text was updated successfully, but these errors were encountered:
@tazihad Have you figured out a work-around for this? I've ended up doing the following in my zshrc:
source /etc/os-release if [ "$VARIANT_ID" = "toolbx" ]; then if [ ! -L /home/linuxbrew ]; then sudo ln -s /run/host/home/linuxbrew /home/linuxbrew fi fi # Linux Brew System eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
Not ideal but it seems to work.
Sorry, something went wrong.
@rmb938 thanks. work around works. I stopped using zsh in toolbox. And didn't source brew in bash.
No branches or pull requests
Describe the bug
If a path is source from
/home/linuxbrew
inzsh
. Toolbox failed to source it. Even though host system can.Steps how to reproduce the behaviour
linuxbrew
on Fedora Atomic.brew
installed in/home/linuxbrew
location.eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
in~/.zsh
.source ~/.zshrc
toolbox enter
toolbox
fails to source path and gives errorExpected behaviour
toolbox container should be able to source path
Actual behaviour
toolbox can't source the path and throws a error.
Output of
toolbox --version
(v0.0.90+)toolbox version 0.0.99.5
Toolbx package info (
rpm -q toolbox
)toolbox-0.0.99.5-11.fc40.x86_64
Output of
podman version
Podman package info (
rpm -q podman
)podman-5.1.1-1.fc40.x86_64
Info about your OS
Fedora Kinoite 40
The text was updated successfully, but these errors were encountered: