mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
9 lines
179 B
Bash
9 lines
179 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if [ "x${1}" == "x" ]; then
|
||
|
|
echo "Package version must be specified to generate tarball version"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
echo "${1}" > "$MESON_DIST_ROOT/.tarball-version"
|