From a49d66491cb0fbde077ba2714a82e7d4c46093cd Mon Sep 17 00:00:00 2001 From: David Taylor Date: Tue, 22 Jul 2025 13:03:11 +0100 Subject: [PATCH] Revert "Fail rebuild for config files containing compromised github organisation (#979)" This reverts commit 7889fe39ebc749c203cc892e29f7e90eddcf07c6. Control of the org has now been regained --- launcher | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/launcher b/launcher index c5bdafaaa..0111edb46 100755 --- a/launcher +++ b/launcher @@ -48,10 +48,6 @@ BUNDLED_PLUGINS=( "discourse-calendar" ) -COMPROMISED_ORGANIZATIONS=( - "github.com/discoursehosting" -) - # for potential re-exec later SAVED_ARGV=("$@") @@ -362,18 +358,6 @@ set_template_info() { arrTemplates=(${templates// / }) config_data=$(cat $config_file) - # if config data includes any compromised organizations, error out and print a message - for org in "${COMPROMISED_ORGANIZATIONS[@]}"; do - if [[ $config_data =~ $org ]]; then - echo "---" - echo "ERROR: The configuration file $config_file contains references to a compromised github organization: $org" - echo "Please remove any references to this organization from your configuration file." - echo "For more information, see https://meta.discourse.org/t/374703/6" - echo "---" - exit 1 - fi - done - input="hack: true" for template in "${arrTemplates[@]}"