We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 338f1e1 commit 2d205e2Copy full SHA for 2d205e2
build.gradle
@@ -70,11 +70,15 @@ tasks.test.configure {
70
testLogging.exceptionFormat = FULL
71
}
72
73
-task assembleArchive(type: Zip, dependsOn: prepareScripts) {
+task assembleArchive(type: Zip, dependsOn: [prepareScripts, prepareContrib]) {
74
archiveAppendix = 'cli'
75
archiveVersion = sdkmanCliBuildVersion
76
- from('build/scripts')
77
- include('*.sh*')
+ from('build/scripts') {
+ include('*.sh*')
78
+ }
79
+ from('build') {
80
+ include('contrib/**')
81
82
83
84
tasks.assemble.configure {
0 commit comments