mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-02-23 15:40:23 +00:00
8 lines
200 B
Bash
Executable File
8 lines
200 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
if [[ $(distrobox list | grep bazzite-arch) ]]; then
|
|
/usr/bin/distrobox-enter -n bazzite-arch -- ' paru -Sua --noconfirm'
|
|
else
|
|
echo "Update skipped: bazzite-arch not installed"
|
|
fi
|