]> git.mxchange.org Git - friendica.git/commitdiff
remove bin/dev/setup-phpunit.sh
authorArt4 <art4@wlabs.de>
Wed, 6 Nov 2024 22:02:44 +0000 (22:02 +0000)
committerArt4 <art4@wlabs.de>
Wed, 6 Nov 2024 22:02:44 +0000 (22:02 +0000)
bin/dev/setup-phpunit.sh [deleted file]

diff --git a/bin/dev/setup-phpunit.sh b/bin/dev/setup-phpunit.sh
deleted file mode 100755 (executable)
index b3884d3..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-PHPUNIT="$(git rev-parse --show-toplevel)/bin/phpunit"
-
-if ! [ -x "$PHPUNIT" ]; then
-       echo "Install PHPUnit 8"
-       cd /tmp/
-       curl -s -O -L https://phar.phpunit.de/phpunit-8.phar
-       chmod +x phpunit-8.phar
-       mv phpunit-8.phar $PHPUNIT
-fi
-
-echo "Using $PHPUNIT $($PHPUNIT --version)"