From 284a103f69b391af533b950b0ee6f2eaa48b4054 Mon Sep 17 00:00:00 2001 From: Motalleb Fallahnezhad Date: Tue, 29 Oct 2024 20:35:22 +0330 Subject: [PATCH] fix: license_plan condition --- src/generator.license.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generator.license.rb b/src/generator.license.rb index db22961..6002263 100755 --- a/src/generator.license.rb +++ b/src/generator.license.rb @@ -74,7 +74,7 @@ if license_file_path.nil? || public_key_path.nil? || private_key_path.nil? exit 1 end -if license_plan != 'ultimate' && license_plan != 'premium' && license_plan != 'starter' && +if license_plan != 'ultimate' && license_plan != 'premium' && license_plan != 'starter' puts "[!] license plan is set to #{license_plan} which is not one of [ultimate, premium, starter]" puts "[!] use -h for help" exit 1