10 lines
274 B
Bash
10 lines
274 B
Bash
pdm-version-pretend-hook() {
|
|
if [ -z "${PDM_BUILD_SCM_VERSION-}" ]; then
|
|
echo "Setting PDM_BUILD_SCM_VERSION to $version"
|
|
export PDM_BUILD_SCM_VERSION="$version"
|
|
fi
|
|
}
|
|
|
|
if [ -z "${dontSetPdmBackendVersion-}" ]; then
|
|
preBuildHooks+=(pdm-version-pretend-hook)
|
|
fi
|