From eb0e7bc426966fa59d7cc6a25f35ffc32607cdab Mon Sep 17 00:00:00 2001 From: Niklas van Schrick Date: Fri, 10 May 2024 19:15:44 +0200 Subject: [PATCH] Fix rubocop violations --- bin/create_key | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/create_key b/bin/create_key index a4407f9..08208ae 100755 --- a/bin/create_key +++ b/bin/create_key @@ -7,7 +7,7 @@ require "code0/license" # Generate a key pair. You should do this only once. key_pair = OpenSSL::PKey::RSA.generate(4096) -environment = ARGV.shift || 'test' +environment = ARGV.shift || "test" # Write it to a file to use in the license generation application. File.write("keys/license_encryption_key_#{environment}.key", key_pair.to_pem)