Skip to content

Commit 03172a8

Browse files
committed
Fix build.
1 parent 0897611 commit 03172a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

develnext/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,12 @@ task distIdeWindowsSetup(dependsOn: ['distIdeWindows']) {
200200
commandLine innoSetupBin, '/Qp', issFile
201201
}
202202

203-
def uploadPath = System.getProperty("uploadPath", "E:/Upload")
203+
def uploadPath = System.getProperty("uploadPath", "E:/Upload/YandexDisk")
204204

205205
if (new File(uploadPath).isDirectory()) {
206206
copy {
207207
from "$project.buildDir/distributions/DevelNextSetup.exe"
208-
into "$uploadPath/YandexDisk"
208+
into "$uploadPath"
209209
rename "DevelNextSetup.exe", "DevelNextSetup-${project.ext.distVersion}.exe"
210210
}
211211
}
@@ -243,12 +243,12 @@ task distIdeLinuxSetup(type: Tar, dependsOn: ['distIdeLinux']) {
243243
}
244244

245245
doLast {
246-
def uploadPath = System.getProperty("uploadPath", "E:/Upload")
246+
def uploadPath = System.getProperty("uploadPath", "E:/Upload/YandexDisk")
247247

248248
if (new File(uploadPath).isDirectory()) {
249249
copy {
250250
from distIdeLinuxSetup.archivePath
251-
into "$uploadPath/YandexDisk"
251+
into "$uploadPath"
252252
}
253253
}
254254
}

0 commit comments

Comments
 (0)