forked from pool/obs-service-kiwi_metainfo_helper
20 lines
446 B
Plaintext
20 lines
446 B
Plaintext
|
#!/bin/bash
|
||
|
set -eu
|
||
|
|
||
|
if [ "${BUILD_DIST+x}" != "x" ]; then
|
||
|
echo "Not running in an OBS build container"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
BUILD_DATA="${BUILD_DIST/.dist/.data}"
|
||
|
. "${BUILD_DATA}"
|
||
|
|
||
|
if [ "${RECIPEFILE##*.}" != "kiwi" ]; then
|
||
|
echo "Recipe is not a kiwi file - exiting"
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
sed -i"" "s#%DISTURL%#${DISTURL}#g" "${RECIPEFILE}"
|
||
|
sed -i"" "s/%RELEASE%/${RELEASE}/g" "${RECIPEFILE}"
|
||
|
sed -i"" "s/%BUILDTIME%/$(date --utc +%FT%T.%NZ)/g" "${RECIPEFILE}"
|