Skip to content

Commit

Permalink
Fix incorrect syntax in meta.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed Oct 16, 2018
1 parent c842267 commit 0e3b738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% set version = GIT_DESCRIBE_TAG | replace("v", "") %}
{% set number = GIT_DESCRIBE_NUMBER | int %}
{% if number > 0 %}
{% set version = version + ".post" + GIT_DESCRIBE_NUMBER}
{% set version = version + ".post" + GIT_DESCRIBE_NUMBER %}
{% endif %}

package:
Expand Down

0 comments on commit 0e3b738

Please sign in to comment.