diff --git a/README.md b/README.md index d6c2955..d05595f 100644 --- a/README.md +++ b/README.md @@ -197,8 +197,8 @@ Deploys a new tag for the repo. Requires: test ``` -export VERSION=`git rev-list --count HEAD`; -echo Adding git tag with version v0.0.${VERSION}; -git tag v0.0.${VERSION}; -git push origin v0.0.${VERSION}; +export VERSION=`git rev-list --count HEAD` +echo Adding git tag with version v0.0.${VERSION} +git tag v0.0.${VERSION} +git push origin v0.0.${VERSION} ```