Skip to content
This repository was archived by the owner on Sep 1, 2025. It is now read-only.

Commit 0da2576

Browse files
robsymetom-seqera
andauthored
Apply suggestions from Tom's code review
Co-authored-by: Tom Sellman <[email protected]>
1 parent 0dc8999 commit 0da2576

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ publish-index:
7575
#
7676
install-plugin:
7777
ifdef plugin
78-
./gradlew installSpecificPlugin -Pplugin=${plugin}
78+
./gradlew :plugins:${plugin}:installPlugin
7979
else
80-
./gradlew installPlugins
80+
./gradlew installPlugin
8181
endif

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ The plugin can be tested without using a local Nextflow build using the followin
108108
Alternatively, you can use Gradle commands directly:
109109
```bash
110110
# Install a specific plugin
111-
./gradlew installSpecificPlugin -Pplugin=nf-hello
111+
./gradlew :plugins:nf-hello:installPlugin
112112
113113
# Install all plugins
114-
./gradlew installPlugins
114+
./gradlew installPlugin
115115
```
116116

117117
3. Create a pipeline that uses your plugin and run it: `nextflow run ./my-pipeline-script.nf`

0 commit comments

Comments
 (0)