mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-06-04 20:59:02 -04:00
AB#2651 Compatibility warning for MiniConstellation (#713)
This commit is contained in:
parent
516e33bee6
commit
85e7b836a3
2 changed files with 5 additions and 6 deletions
|
@ -99,7 +99,7 @@ func up(cmd *cobra.Command, creator cloudCreator, spinner spinnerInterf) error {
|
|||
func checkSystemRequirements(out io.Writer) error {
|
||||
// check arch/os
|
||||
if runtime.GOARCH != "amd64" || runtime.GOOS != "linux" {
|
||||
return fmt.Errorf("creation of a QEMU based Constellation is not supported for %s/%s", runtime.GOOS, runtime.GOARCH)
|
||||
return fmt.Errorf("creation of a QEMU based Constellation is not supported for %s/%s, a linux/amd64 platform is required", runtime.GOOS, runtime.GOARCH)
|
||||
}
|
||||
|
||||
// check if /dev/kvm exists
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue