From aaa17c033f6febc7b0c2d5e1e85c69d026a9e0a5 Mon Sep 17 00:00:00 2001 From: Hugo Renard Date: Mon, 28 Oct 2024 16:47:59 +0100 Subject: [PATCH] ci: remove git vendor git folder --- ci/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/main.go b/ci/main.go index f9c370a..7add714 100644 --- a/ci/main.go +++ b/ci/main.go @@ -41,6 +41,7 @@ func main() { WithFile("composer.json", client.Host().File("composer.json")). WithFile("composer.lock", client.Host().File("composer.lock")). WithExec([]string{"composer", "i", "--no-dev", "--ignore-platform-reqs"}). + WithExec([]string{"rm", "-rf", "vendor/audriga/scim-server-php/.git"}). Directory("vendor") output := client.Container().From("docker.io/nextcloud:27").