From 3afb88c4e84ff3f9cb2df08ce8a2ee3a7fa0f152 Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Thu, 5 May 2022 10:58:44 +0200 Subject: [PATCH] chore: switched to vieter/vc repo --- .woodpecker/.vc.yml | 2 +- GNUmakefile | 2 +- Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.woodpecker/.vc.yml b/.woodpecker/.vc.yml index 15ca4d2944..b794e50adc 100644 --- a/.woodpecker/.vc.yml +++ b/.woodpecker/.vc.yml @@ -30,7 +30,7 @@ pipeline: - export "COMMIT_HASH=$(git rev-parse --short HEAD)" - export "COMMIT_MSG=$(git log -1 --oneline --pretty='%s' HEAD)" - rm -rf vc - - git clone --depth=1 'git@git.rustybever.be:Chewing_Bever/vc.git' + - git clone --depth=1 'git@git.rustybever.be:vieter/vc.git' - rm -rf vc/v.c vc/v_win.c - ./v -o vc/v.c -os cross cmd/v - ./v -o vc/v_win.c -os windows -cc msvc cmd/v diff --git a/GNUmakefile b/GNUmakefile index 1ab9186360..a43e45cfa4 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -5,7 +5,7 @@ TMPDIR ?= /tmp VROOT ?= . VC ?= ./vc V ?= ./v -VCREPO ?= https://git.rustybever.be/Chewing_Bever/vc +VCREPO ?= https://git.rustybever.be/vieter/vc TCCREPO ?= https://github.com/vlang/tccbin VCFILE := v.c diff --git a/Makefile b/Makefile index a365c20fd3..f70ee1c42b 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ LDFLAGS ?= all: rm -rf vc/ - git clone --depth 1 --quiet https://git.rustybever.be/Chewing_Bever/vc + git clone --depth 1 --quiet https://git.rustybever.be/vieter/vc $(CC) $(CFLAGS) -std=gnu11 -w -o v1 vc/v.c -lm -lexecinfo -lpthread $(LDFLAGS) ./v1 -no-parallel -o v2 $(VFLAGS) cmd/v ./v2 -o v $(VFLAGS) cmd/v