aboutsummaryrefslogtreecommitdiff
path: root/srcs/phpmyadmin/vendor/williamdes/mariadb-mysql-kbs/scripts/ci/install-reporters.sh
diff options
context:
space:
mode:
Diffstat (limited to 'srcs/phpmyadmin/vendor/williamdes/mariadb-mysql-kbs/scripts/ci/install-reporters.sh')
-rwxr-xr-xsrcs/phpmyadmin/vendor/williamdes/mariadb-mysql-kbs/scripts/ci/install-reporters.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/srcs/phpmyadmin/vendor/williamdes/mariadb-mysql-kbs/scripts/ci/install-reporters.sh b/srcs/phpmyadmin/vendor/williamdes/mariadb-mysql-kbs/scripts/ci/install-reporters.sh
deleted file mode 100755
index 19befa5..0000000
--- a/srcs/phpmyadmin/vendor/williamdes/mariadb-mysql-kbs/scripts/ci/install-reporters.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/env bash
-therealpath ()
-{
- f=$@;
- if [ -d "$f" ]; then
- base="";
- dir="$f";
- else
- base="/$(basename "$f")";
- dir=$(dirname "$f");
- fi;
- dir=$(cd "$dir" && /bin/pwd);
- echo "$dir$base"
-}
-ME="$(therealpath $(dirname $0))"
-echo "I am in : $ME"
-mkdir -p "$HOME/.cache/ci"
-cd "$HOME/.cache/ci"
-CODACY_LATEST_PHAR=$(curl -s https://api.github.com/repos/codacy/php-codacy-coverage/releases/latest | grep browser_download_url | cut -d '"' -f 4)
-echo "CODACY_LATEST_PHAR: $CODACY_LATEST_PHAR"
-wget --timestamping "$CODACY_LATEST_PHAR"
-
-cp "$HOME/.cache/ci/codacy-coverage.phar" "$ME/../../codacy-coverage.phar"
-
-chmod +x "$ME/../../codacy-coverage.phar"
-
-cd "$ME/../../"