nercone-shell 0.4.0__tar.gz → 0.4.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {nercone_shell-0.4.0 → nercone_shell-0.4.1}/PKG-INFO +1 -1
- {nercone_shell-0.4.0 → nercone_shell-0.4.1}/pyproject.toml +1 -1
- {nercone_shell-0.4.0 → nercone_shell-0.4.1}/src/nercone_shell/__main__.py +1 -1
- {nercone_shell-0.4.0 → nercone_shell-0.4.1}/README.md +0 -0
- {nercone_shell-0.4.0 → nercone_shell-0.4.1}/src/nercone_shell/__init__.py +0 -0
|
@@ -186,7 +186,7 @@ def load_config() -> dict:
|
|
|
186
186
|
f.write(json.dumps(NERSH_CONFIG_DEFAULT, indent=4) + "\n")
|
|
187
187
|
with NERSH_CONFIG_PATH.open("r") as f:
|
|
188
188
|
NERSH_CONFIG |= json.loads(f.read())
|
|
189
|
-
for p in NERSH_CONFIG.get("customization", {}).get("
|
|
189
|
+
for p in NERSH_CONFIG.get("customization", {}).get("autorun", []):
|
|
190
190
|
if not Path(p).is_file():
|
|
191
191
|
with Path(p).open("w") as f:
|
|
192
192
|
f.write("\n")
|
|
File without changes
|
|
File without changes
|