Skip to content

Commit 2c3ab1b

Browse files
committed
Improve version.sh
1 parent 583d8ee commit 2c3ab1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

version.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ if [ $# -eq 0 ]; then
88
fi
99

1010
# Set package `version`.
11-
sed -i "s/^version = \"[[:digit:]\\.]*\"/version = \"$1\"/" ui/Cargo.toml
11+
sed -ir "s/^version = \"[^\"]*\"/version = \"$1\"/" ui/Cargo.toml
1212

1313
# Set Windows metadata `ProductVersion`.
14-
sed -i "s/^ProductVersion = \"[[:digit:]\\.]*\"/ProductVersion = \"$1\"/" ui/Cargo.toml
14+
sed -ir "s/^ProductVersion = \"[^\"]*\"/ProductVersion = \"$1\"/" ui/Cargo.toml
1515

1616
# Set environment variable `NDCELL_VERSION` in GitHub Actions workflow
17-
sed -i "s/NDCELL_VERSION: [[:digit:]\\.]*/NDCELL_VERSION: $1/" .github/workflows/*.yml
17+
sed -ir "s/NDCELL_VERSION: [^\\n]*/NDCELL_VERSION: $1/" .github/workflows/*.yml

0 commit comments

Comments
 (0)