From fcc025a1a286ce59d56a1cef31777b07e029a34d Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sun, 27 Jun 2021 18:33:22 +0200 Subject: [PATCH] Fix CI pipeline classpath --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00d9c81..77f4940 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: curl $jar_url > spigot-shaded.jar find -name "*.java" > sources curl -s https://github.com/GabrielTofvesson/SpigotWizCompat/releases | grep "latest/SpigotWizCompat-.*jar" | cut -d : -f 2,3 | sed "s/[^\"]*\"\\([^\"]*\\)\".*/https:\\/\\/github.com\\/\\1/g" | wget -O SpigotWizCompat.jar -qi - - javac -cp spigot-shaded.jar;SpigotWizCompat.jar @sources -d build + javac -cp . @sources -d build cp res/* build rm sources cd build