Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/25b8738c05d16d16e705211d30b5925314086cc3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
5 additions and
5 deletions
@ -16,13 +16,13 @@ file_list=$(cat .github/files_to_copy)
for f in $file_list
do
echo " **** copying $f to release **** "
cp -r --parents $f $to_dist
cp -r --parents " $f " $to_dist
done
# COPY VERSION file
cp VERSION $to_dist
pushd __builds__/bazarr
zip -r ../bazarr.zip . -b $( mktemp -d)
zip -r ../bazarr.zip . -b " $( mktemp -d) "
popd
rm -rf $to_dist
@ -8,7 +8,7 @@ master_version=$(git describe --tags --abbrev=0 --match "v[0-9].[0-9].[0-9]")
latest_verion = $( git describe --tags --abbrev= 0)
if [ [ $RELEASE_MASTER -eq 1 ] ] ; then
auto-changelog --stdout -t changelog-master.hbs --starting-version $master_version --commit-limit 3
auto-changelog --stdout -t changelog-master.hbs --starting-version " $master_version " --commit-limit 3
else
auto-changelog --stdout --starting-version $latest_verion --unreleased --commit-limit 0
auto-changelog --stdout --starting-version " $latest_verion " --unreleased --commit-limit 0
fi
@ -9,7 +9,7 @@ file_list=$(cat .github/files_to_copy)
for f in $file_list
do
echo " **** checking $f **** "
if [ ! -f $f ] && [ ! -d $f ] ; then
if [ ! -f " $f " ] && [ ! -d " $f " ] ; then
echo " **** $f doesn't exist, skipping release **** "
exit 1
fi