Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: adapt setup scripts to run properly on distrobox (#1687)
Due to a problem with [ruby-augeas](https://rubygems.org/gems/augeas) and Ruby 3.3, the setup script does not work anymore. In our continuous integration we decided to use the system libraries, which causes bundler to install software into `/usr/lib`. Of course, we do not want that behavior everywhere. Alternatively, this PR adapts the script to work using distrobox. The setup is rather simple: ``` distrobox create --root --init --image tumbleweed --name agama distrobox enter --root agama ./setup.sh ``` The script detects that it is running on distrobox and it workarounds the augeas problem like in our continuous integration. Please, see #1685 for more context.
- Loading branch information