aboutsummaryrefslogtreecommitdiff
path: root/srcs/phpmyadmin/vendor/williamdes/mariadb-mysql-kbs/scripts/ci/install-reporters.sh
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
commit5bf66662a9bdd62c5bccab15e607cd95cfb8fcab (patch)
tree39a1a4629749056191c05dfd899f931701b7acf3 /srcs/phpmyadmin/vendor/williamdes/mariadb-mysql-kbs/scripts/ci/install-reporters.sh
parent5afd237bbd22028b85532b8c0b3fcead49a00764 (diff)
downloadft_server-master.tar.gz
ft_server-master.tar.bz2
ft_server-master.zip
Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my famillyHEADmaster
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/../../"