Skip to content

Commit

Permalink
Fix bad nextflow repo URL (#60)
Browse files Browse the repository at this point in the history
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
```
  • Loading branch information
akarve authored Feb 11, 2023
1 parent f3a1c1e commit 7751592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 7751592

Please sign in to comment.