From f75586208ff1c75c5e8d8fcca2507ff154834bee Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Mon, 16 Jul 2018 00:15:33 +0200 Subject: [PATCH] pmb: unsupported arch: link to wiki page The old message was outdated and incomplete, added a link to this wiki page instead: --- pmb/parse/arguments.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pmb/parse/arguments.py b/pmb/parse/arguments.py index 143830fb..7e147bc4 100644 --- a/pmb/parse/arguments.py +++ b/pmb/parse/arguments.py @@ -488,11 +488,8 @@ def arguments(): arch = args.deviceinfo["arch"] if (arch != args.arch_native and arch not in pmb.config.build_device_architectures): - raise ValueError("Arch '" + arch + "' is not officially enabled" - " in postmarketOS yet. However, this should be straight" - " forward. Simply enable it in pmb/config/__init__.py" - " in build_device_architectures, zap your package cache" - " (otherwise you will have issues with noarch packages)" - " and try again.") + raise ValueError("Arch '" + arch + "' is not available in" + " postmarketOS. If you would like to add it, see:" + " ") return args