Vanilla-OS / apx

Apx (/à·peks/) is the default package manager in Vanilla OS. It is a wrapper around multiple package managers to install packages and run commands inside a managed container.
https://dev-apx.vanillaos.org
GNU General Public License v3.0
504 stars 39 forks source link

Unable to run custom commands inside of sub systems with Orchid. #383

Open 103sbavert opened 3 months ago

103sbavert commented 3 months ago

When I run apx <subsystem> run <command> {--flags}, it doesn't seem to parse the flags correctly and using quotes, double or single, doesn't help at all.

In particular, while trying to install yay through makepkg -si by running apx Arch run makepkg -si inside of the yay folder (cloned from AUR), it tells me -si are invalid because it thinks they're flags for apx itself and not for makepkg.

taukakao commented 3 months ago

Try: apx <subsystem> run -- <command> {--flags}

"--" tells apx to ignore all additional flags

103sbavert commented 3 months ago

I've removed VanillaOS for the time being. If you want you can close this issue or keep it open until the parsing is fixed.