From 775159217ac12986f6c4a21e62dff0c1c5f347e1 Mon Sep 17 00:00:00 2001 From: Aneesh Karve Date: Fri, 10 Feb 2023 17:47:03 -0700 Subject: [PATCH] Fix bad nextflow repo URL (#60) Resolve this error: ``` Cloning into '../nextflow'... remote: Repository not found. fatal: repository 'https://github.com/nextflow.io/nextflow.git/' not found make: *** [nextflow-22-10] Error 128 ``` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e956d34d..32cbda28 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ compile: @echo "DONE `date`" nextflow-22-10: - if [ ! -d "$(NF_DIR)" ]; then git clone https://github.com/nextflow.io/nextflow.git "$(NF_DIR)"; fi + if [ ! -d "$(NF_DIR)" ]; then git clone https://github.com/nextflow-io/nextflow.git "$(NF_DIR)"; fi pushd "$(NF_DIR)"; git checkout 4f776ef -b v22_10_6_$(PID) && make compile && git restore .; popd # https://github.com/nextflow-io/nextflow/releases/tag/v22.10.6