Skip to content

Commit 8221255

Browse files
committed
#476 Fixing mlDeleteCollections
1 parent cea0349 commit 8221255

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/groovy/com/marklogic/gradle/task/datamovement/DeleteCollectionsTask.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class DeleteCollectionsTask extends DataMovementTask {
99

1010
@TaskAction
1111
void deleteCollections() {
12-
project.ext.collections = (collections != null && collections.length > 0) ? collections.join(",") : null
12+
project.ext.collections = (collections != null && collections.length > 0) ? collections.join(",") : project.ext.collections
1313
runQueryBatcherJob(new DeleteCollectionsJob())
1414
}
1515
}

0 commit comments

Comments
 (0)