From fba34371af239490ca81e43746542e1917ee65d8 Mon Sep 17 00:00:00 2001 From: Jonathan Dunn Date: Fri, 2 Feb 2024 10:41:27 -0500 Subject: [PATCH] minor change --- client/fabric | 1 + 1 file changed, 1 insertion(+) diff --git a/client/fabric b/client/fabric index d688490..d18c6e2 100755 --- a/client/fabric +++ b/client/fabric @@ -37,6 +37,7 @@ if __name__ == "__main__": with open(env_file, 'w') as f: f.write(f'OPENAI_API_KEY={args.apikey}') print(f'OpenAI API key set to {args.apikey}') + sys.exit() if not os.path.exists(env_file): print('No API key found. Use the --apikey option to set the key') sys.exit()