Browse Source

Merge pull request #387 from tomraulet/main

Ensure env file created in setup when no API keys provided
pull/390/head
Daniel Miessler 6 months ago committed by GitHub
parent
commit
dff033e08a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 16
      installer/client/cli/utils.py

16
installer/client/cli/utils.py

@ -531,6 +531,21 @@ class Setup:
except:
pass
def __ensure_env_file_created(self):
""" Ensure that the environment file is created.
Returns:
None
Raises:
OSError: If the environment file cannot be created.
"""
print("Creating empty environment file...")
if not os.path.exists(self.env_file):
with open(self.env_file, "w") as f:
f.write("#No API key set\n")
print("Environment file created.")
def update_shconfigs(self):
bootstrap_file = os.path.join(
self.config_directory, "fabric-bootstrap.inc")
@ -697,6 +712,7 @@ class Setup:
self.youtube_key(youtubekey)
self.patterns()
self.update_shconfigs()
self.__ensure_env_file_created()
class Transcribe:

Loading…
Cancel
Save