17 lines
270 B
Text
17 lines
270 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -o pipefail
|
||
|
|
||
|
if test "$1" = ""; then
|
||
|
echo "Version not provided" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
if ! test -d "$2"; then
|
||
|
echo "Source directory not provided" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# generate tarball version
|
||
|
echo "$1" > "$MESON_DIST_ROOT/.tarball-version"
|