patch-package-py 0.1.4__tar.gz → 0.1.5__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.
- {patch_package_py-0.1.4 → patch_package_py-0.1.5}/PKG-INFO +1 -1
- {patch_package_py-0.1.4 → patch_package_py-0.1.5}/patch_package_py/core.py +7 -0
- {patch_package_py-0.1.4 → patch_package_py-0.1.5}/pyproject.toml +1 -1
- {patch_package_py-0.1.4 → patch_package_py-0.1.5}/.gitignore +0 -0
- {patch_package_py-0.1.4 → patch_package_py-0.1.5}/README.md +0 -0
- {patch_package_py-0.1.4 → patch_package_py-0.1.5}/patch_package_py/__init__.py +0 -0
- {patch_package_py-0.1.4 → patch_package_py-0.1.5}/patch_package_py/cli.py +0 -0
|
@@ -154,6 +154,13 @@ def prepare_patch_workspace(
|
|
|
154
154
|
stderr=subprocess.DEVNULL,
|
|
155
155
|
stdout=subprocess.DEVNULL,
|
|
156
156
|
)
|
|
157
|
+
subprocess.check_call(
|
|
158
|
+
["git", "config", "user.name", "patch-package-py"], cwd=git_path
|
|
159
|
+
)
|
|
160
|
+
subprocess.check_call(
|
|
161
|
+
["git", "config", "user.email", "noreply@patch-package-py.local"],
|
|
162
|
+
cwd=git_path,
|
|
163
|
+
)
|
|
157
164
|
subprocess.check_call(
|
|
158
165
|
["git", "add", "."],
|
|
159
166
|
cwd=git_path,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|