Skip to content

Commit

Permalink
documentation: avoid prepended character on version string
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhenderson committed Jan 7, 2019
1 parent 2d28afb commit 10b6f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/ns3_html_theme/get_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ elif [ $tag -eq 1 ]; then
vers_href=

else
version=`git describe HEAD --tags | cut -c 9- | cut -d '-' -f 2`
version=`git describe HEAD --tags | cut -c 9- | cut -d '-' -f 2 | cut -c 2-`
# Check for uncommitted changes
changes=0
if [ "$(git status --porcelain)" ]; then
Expand Down

0 comments on commit 10b6f9d

Please sign in to comment.