Skip to content

Commit

Permalink
Fix syntax error in tagging script
Browse files Browse the repository at this point in the history
  • Loading branch information
alisaifee committed Jul 30, 2017
1 parent 4b15e1b commit 63d39fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tag.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
echo current version:$(python -c "import jiracli;print jiracli.__version__")
echo current version:$(python -c "import jiracli;print(jiracli.__version__)")
read -p "new version:" new_version
git tag -s ${new_version} -m "tagging version ${new_version}"
python setup.py build sdist bdist_egg upload
Expand Down

0 comments on commit 63d39fa

Please sign in to comment.