From 64ab757b67f35ab469d2be6e5bc28a1ee904a049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20N=C3=A9lias?= Date: Fri, 17 May 2024 18:15:33 +0200 Subject: [PATCH] Path to julia Appveyor (#329) it seems the path to Julia has changed in Appveyor, to ```C:\julia\bin\julia```, so the readme should be adapted accordingly. Co-authored-by: Max Horn --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1495974..d0ce699 100644 --- a/README.md +++ b/README.md @@ -198,7 +198,7 @@ When using Coverage.jl locally, over time a lot of `.cov` files can accumulate. ```yml after_test: - - C:\projects\julia\bin\julia -e "using Pkg; Pkg.add(\"Coverage\"); using Coverage; Coveralls.submit(process_folder())" + - C:\julia\bin\julia -e "using Pkg; Pkg.add(\"Coverage\"); using Coverage; Coveralls.submit(process_folder())" ``` ## A note for advanced users