From ecb996f0b214c2a6fdea516c316ce0310a89918a Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Wed, 2 Sep 2020 15:00:26 +0200
Subject: [PATCH] build-release: Fix build failing due to missing
 .coveralls.yml

.coveralls.yml has been superceded by codecov.yml. Update the release
build script to delete the new file.
---
 bin/build-release.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/build-release.sh b/bin/build-release.sh
index c2b880b4a..87ee08570 100755
--- a/bin/build-release.sh
+++ b/bin/build-release.sh
@@ -58,11 +58,11 @@ cp -rv "$TARGET/metadata-templates/"* "$TARGET/metadata/"
 rm -rf "$TARGET/.git"
 rm -rf "$TARGET/node_modules"
 rm "$TARGET/www/assets/js/stylesheet.js"*
-rm "$TARGET/.coveralls.yml"
 rm "$TARGET/.editorconfig"
 rm "$TARGET/.gitattributes"
 rm "$TARGET/.php_cs.dist"
 rm "$TARGET/.travis.yml"
+rm "$TARGET/codecov.yml"
 rm "$TARGET/psalm.xml"
 rm "$TARGET"/{,modules}/.gitignore
 rm "$TARGET"/{cache,config,metadata,locales}/.gitkeep
-- 
GitLab