Skip to content

Commit

Permalink
avoid spurious conversion from 10 to 1 in update_version
Browse files Browse the repository at this point in the history
  • Loading branch information
h-vetinari committed Jun 3, 2024
1 parent d8ccb51 commit 7b42ad5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ outputs:
# Used to set up the path in the activate script
- vswhere
run_constrained:
- vs_{{ cross_target_platform }} {{ vsyear }}.{{ update_version }}
- vs_{{ cross_target_platform }} {{ vsyear }}.{{ update_version|int }}
test:
commands:
- echo "%CMAKE_GENERATOR%"
Expand All @@ -225,7 +225,7 @@ outputs:
license: BSD-3-Clause

- name: vs_{{ cross_target_platform }}
version: {{ vsyear }}.{{ update_version }}
version: {{ vsyear }}.{{ update_version|int }}
build:
track_features:
- vc{{ vc_major }}
Expand Down

0 comments on commit 7b42ad5

Please sign in to comment.