We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 583d8ee commit 2c3ab1bCopy full SHA for 2c3ab1b
version.sh
@@ -8,10 +8,10 @@ if [ $# -eq 0 ]; then
8
fi
9
10
# Set package `version`.
11
-sed -i "s/^version = \"[[:digit:]\\.]*\"/version = \"$1\"/" ui/Cargo.toml
+sed -ir "s/^version = \"[^\"]*\"/version = \"$1\"/" ui/Cargo.toml
12
13
# Set Windows metadata `ProductVersion`.
14
-sed -i "s/^ProductVersion = \"[[:digit:]\\.]*\"/ProductVersion = \"$1\"/" ui/Cargo.toml
+sed -ir "s/^ProductVersion = \"[^\"]*\"/ProductVersion = \"$1\"/" ui/Cargo.toml
15
16
# Set environment variable `NDCELL_VERSION` in GitHub Actions workflow
17
-sed -i "s/NDCELL_VERSION: [[:digit:]\\.]*/NDCELL_VERSION: $1/" .github/workflows/*.yml
+sed -ir "s/NDCELL_VERSION: [^\\n]*/NDCELL_VERSION: $1/" .github/workflows/*.yml
0 commit comments