From 5b79e4e0129b1946f29c44bcb640e15eaeac56c5 Mon Sep 17 00:00:00 2001 From: donoghuc Date: Wed, 26 Feb 2020 11:47:59 -0800 Subject: [PATCH] (maint) Allow install task to downlad macos 10.15 Add condintion to allow downloading puppet agent packages from 10.15 repo. --- tasks/install_shell.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/install_shell.sh b/tasks/install_shell.sh index dfcd48ab7..aec9dc58f 100644 --- a/tasks/install_shell.sh +++ b/tasks/install_shell.sh @@ -176,6 +176,7 @@ if [ -f "$PT__installdir/facts/tasks/bash.sh" ]; then "10.12") platform_version="10.12";; "10.13") platform_version="10.13";; "10.14") platform_version="10.14";; + "10.15") platform_version="10.15";; *) echo "No builds for platform: $major_version" exit 1 ;;