Skip to content

Commit c50f0a8

Browse files
authored
Fix code error of Minor Release Steps in CONTRIBUTING (#388)
1 parent d03cf62 commit c50f0a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -830,15 +830,15 @@ created the following will occur:
830830
not be deleted. Tag the release with:
831831

832832
```bash
833-
git tag v$(python -c "import scikit-gmsh as sg; print(sg.__version__)")
833+
git tag v$(python -c "import skgmsh as skg; print(skg.__version__)")
834834
```
835835

836836
1. Please check again that the tag has been created correctly and push
837837
the branch and tag.
838838

839839
```bash
840840
git push origin HEAD
841-
git push origin v$(python -c "import scikit-gmsh as sg; print(sg.__version__)")
841+
git push origin v$(python -c "import skgmsh as skg; print(skg.__version__)")
842842
```
843843

844844
1. Create a list of all changes for the release. It is often helpful to

0 commit comments

Comments
 (0)