Skip to content

Commit

Permalink
0.3.9, updasting json handler and also minor typo in json format
Browse files Browse the repository at this point in the history
  • Loading branch information
pakkinlau committed Oct 18, 2023
1 parent b00eb82 commit db9b034
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gites/subpackage/datastore_json_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def load_datastore_json(self):
print("it is an empty json. creating structure for it...")
existing_data["repositories"] = []
# case 4: if "root_directory" is not specified in the datastore json.
if "root_directory" not in existing_data:
if "root_directories" not in existing_data:
raise SystemExit(f"Terminating due to the root directory of your git repository folders are not properly defined in your datastore json: {self.gites_datastore_json_location}")
# finally return data
return existing_data
Expand Down
2 changes: 1 addition & 1 deletion gites/subpackage/example.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"root_directories": {
"linux": "/home/kin/All_github_repos/",
"windows": "C:\\Users\\Kin\\All_github_repos\\"
},
}
}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='gites',
version='0.3.8',
version='0.3.9',
description='gites is the home of all developers. It provides bulk clone, bulk push, bulk pull etc. Contact me with my discord ID: pakkin.lau',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit db9b034

Please sign in to comment.