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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: nercone-shell
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Modern shell for Developers
5
5
  Author: Nercone
6
6
  Author-email: Nercone <nercone@diamondgotcat.net>
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "nercone-shell"
7
- version = "0.4.0"
7
+ version = "0.4.1"
8
8
  description = "Modern shell for Developers"
9
9
  readme = { file = "README.md", content-type = "text/markdown" }
10
10
  authors = [
@@ -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("autoruns", []):
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