SkillLink 0.1.1__tar.gz → 0.1.2__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.
- {skilllink-0.1.1 → skilllink-0.1.2}/PKG-INFO +1 -1
- {skilllink-0.1.1 → skilllink-0.1.2}/SkillLink/SkillLink.py +0 -3
- {skilllink-0.1.1 → skilllink-0.1.2}/SkillLink.egg-info/PKG-INFO +1 -1
- {skilllink-0.1.1 → skilllink-0.1.2}/pyproject.toml +1 -1
- {skilllink-0.1.1 → skilllink-0.1.2}/setup.py +1 -1
- {skilllink-0.1.1 → skilllink-0.1.2}/README.md +0 -0
- {skilllink-0.1.1 → skilllink-0.1.2}/SkillLink/__init__.py +0 -0
- {skilllink-0.1.1 → skilllink-0.1.2}/SkillLink.egg-info/SOURCES.txt +0 -0
- {skilllink-0.1.1 → skilllink-0.1.2}/SkillLink.egg-info/dependency_links.txt +0 -0
- {skilllink-0.1.1 → skilllink-0.1.2}/SkillLink.egg-info/requires.txt +0 -0
- {skilllink-0.1.1 → skilllink-0.1.2}/SkillLink.egg-info/top_level.txt +0 -0
- {skilllink-0.1.1 → skilllink-0.1.2}/setup.cfg +0 -0
@@ -42,14 +42,11 @@ class SkillLink:
|
|
42
42
|
if os.path.exists(dstFile):
|
43
43
|
if override:
|
44
44
|
shutil.copy2(srcFile, dstFile)
|
45
|
-
print(f"Overridden {dstFile} with {srcFile}")
|
46
45
|
logger.info(f"Overridden {dstFile} with {srcFile}")
|
47
46
|
else:
|
48
|
-
print(f"File {dstFile} already exists locally. Skipping (preserving local).")
|
49
47
|
logger.info(f"File {dstFile} already exists locally. Skipping (preserving local).")
|
50
48
|
continue
|
51
49
|
shutil.copy2(srcFile, dstFile)
|
52
|
-
print(f"Copied {srcFile} to {dstFile}")
|
53
50
|
logger.info(f"Copied {srcFile} to {dstFile}")
|
54
51
|
|
55
52
|
def startSync(self, **kwargs):
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "SkillLink"
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.2"
|
8
8
|
description = "A Modern way to sync skills"
|
9
9
|
authors = [
|
10
10
|
{ name="Tristan McBride Sr.", email = "142635792+TristanMcBrideSr@users.noreply.github.com" },
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|