From 63f5ecd6802fa3d8f5fccdecbfc2cb27586c6cb0 Mon Sep 17 00:00:00 2001 From: marlon Date: Thu, 31 Oct 2024 15:05:47 -0400 Subject: [PATCH] fix quotes in abra.sh commands --- abra.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/abra.sh b/abra.sh index dc2b551..1391149 100644 --- a/abra.sh +++ b/abra.sh @@ -9,21 +9,21 @@ reconfigure() { } disable_basic_login() { - run_rails_command("Gitlab::CurrentSettings.update!(password_authentication_enabled_for_web: false)") + run_rails_command('Gitlab::CurrentSettings.update!(password_authentication_enabled_for_web: false)') reconfigure() } enable_basic_login() { - run_rails_command("Gitlab::CurrentSettings.update!(password_authentication_enabled_for_web: true)") + run_rails_command('Gitlab::CurrentSettings.update!(password_authentication_enabled_for_web: true)') reconfigure() } disable_signups() { - run_rails_command("Gitlab::CurrentSettings.update!(signup_enabled: false)") + run_rails_command('Gitlab::CurrentSettings.update!(signup_enabled: false)') reconfigure() } enable_signups() { - run_rails_command("Gitlab::CurrentSettings.update!(signup_enabled: true)") + run_rails_command('Gitlab::CurrentSettings.update!(signup_enabled: true)') reconfigure() } \ No newline at end of file