summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2019-10-22 16:01:09 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2019-10-22 16:01:09 +1000
commit5fe2dea278196cd7e1894212ad229446332f00e7 (patch)
tree6a3b6384cb995371ce67fbe4f189faf3a7c4eaab
parentb3966ffe08cc30b85f5b628ffa1062a4d7a3641d (diff)
release.sh: fix two minor nitpicks
Indentation issue and a clarification on the message since ninja only creates one tarball. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rwxr-xr-xrelease.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/release.sh b/release.sh
index bb7e26f..74e339d 100755
--- a/release.sh
+++ b/release.sh
@@ -455,7 +455,7 @@ process_module() {
return 1
fi
- echo "Info: running \"ninja dist\" to create tarballs:"
+ echo "Info: running \"ninja dist\" to create tarball:"
ninja -C $build_dir dist
if [ $? -ne 0 ]; then
echo "Error: ninja dist failed"
@@ -464,8 +464,8 @@ process_module() {
fi
# Find out the package name from the meson.build file
- pkg_name=$(meson introspect $build_dir --projectinfo | jq -r .descriptive_name)
- pkg_version=$(meson introspect $build_dir --projectinfo | jq -r .version)
+ pkg_name=$(meson introspect $build_dir --projectinfo | jq -r .descriptive_name)
+ pkg_version=$(meson introspect $build_dir --projectinfo | jq -r .version)
tar_root="$build_dir/meson-dist"
announce_dir=$tar_root
fi