From 39a5cbe56f6321e91b355b2c8049cc09ccd71a55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Le=20Barbier?= Date: Sat, 15 Jun 2024 06:44:51 +0200 Subject: [PATCH] fixup! Install MacPorts under an arbitrary prefix --- validate_configuration | 4 ---- 1 file changed, 4 deletions(-) diff --git a/validate_configuration b/validate_configuration index 1e9f5fb..24a190e 100755 --- a/validate_configuration +++ b/validate_configuration @@ -69,10 +69,6 @@ main() if [ ! -r "$1" ]; then failwith 'The pathname \047%s\047 does not designate a readable file.' "$1" fi - - if ! [ $(yq '.prefix' "$1") = '/opt/local' ]; then - failwith 'The only supported prefix is \047/opt/local\047.' - fi } main "$@"