Skip to content

Commit

Permalink
feat: RepositoryProvider.revision now public property (nextflow-io#5500)
Browse files Browse the repository at this point in the history

Signed-off-by: Nathan Johnson <[email protected]>
  • Loading branch information
swingingsimian authored and alberto-miranda committed Nov 19, 2024
1 parent 7f55c91 commit 80b322b
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,23 @@ abstract class RepositoryProvider {
return this
}

String getRevision() {
return this.revision
}

RepositoryProvider setRevision(String revision) {
this.revision = revision
return this
}

String getProject() {
return this.project
}

ProviderConfig getConfig() {
return this.config
}

boolean hasCredentials() {
getUser() && getPassword()
}
Expand Down

0 comments on commit 80b322b

Please sign in to comment.