Skip to content

Commit 2d205e2

Browse files
Oliver Weilermarc0der
authored andcommitted
Add contrib folder to ZIP archive
1 parent 338f1e1 commit 2d205e2

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

build.gradle

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,15 @@ tasks.test.configure {
7070
testLogging.exceptionFormat = FULL
7171
}
7272

73-
task assembleArchive(type: Zip, dependsOn: prepareScripts) {
73+
task assembleArchive(type: Zip, dependsOn: [prepareScripts, prepareContrib]) {
7474
archiveAppendix = 'cli'
7575
archiveVersion = sdkmanCliBuildVersion
76-
from('build/scripts')
77-
include('*.sh*')
76+
from('build/scripts') {
77+
include('*.sh*')
78+
}
79+
from('build') {
80+
include('contrib/**')
81+
}
7882
}
7983

8084
tasks.assemble.configure {

0 commit comments

Comments
 (0)