Skip to content

Commit cde5948

Browse files
authored
Fixed FileVersion entry in bump-version script (#1243)
1 parent fbab343 commit cde5948

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

make_release/bump-version.nu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def main [
6262

6363
log debug $"bumping winresource metadata in Cargo.toml from ($version) to ($new_version)"
6464
open --raw "Cargo.toml"
65-
| str replace $'FileVersion = "($version)"' $'FileVersion = "($new_version)'
65+
| str replace $'FileVersion = "($version)"' $'FileVersion = "($new_version)"'
6666
| str replace $'ProductVersion = "($version)"' $'ProductVersion = "($new_version)"'
6767
| save --force "Cargo.toml"
6868

0 commit comments

Comments
 (0)