Skip to content

Commit

Permalink
Merge pull request #6096 from mysteriumnetwork/fix-raspberry-package
Browse files Browse the repository at this point in the history
Replace non existing qemu package for raspberry build
  • Loading branch information
redmundas authored Jan 20, 2025
2 parents 2811994 + 414a489 commit 2dfb075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/packages/raspberry.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func configureRaspbianImage(raspbianImagePath string) error {
if err := shell.NewCmd("sudo apt-get update").Run(); err != nil {
return err
}
if err := shell.NewCmd("sudo apt-get install -y qemu qemu-user-static binfmt-support systemd-container").RunWith(envs); err != nil {
if err := shell.NewCmd("sudo apt-get install -y qemu-system qemu-user-static binfmt-support systemd-container").RunWith(envs); err != nil {
return err
}
loopDevice, err := device.AttachLoop(raspbianImagePath)
Expand Down

0 comments on commit 2dfb075

Please sign in to comment.