Skip to content
This repository has been archived by the owner on Aug 10, 2021. It is now read-only.

Commit

Permalink
Fix path for the uploadBundle task
Browse files Browse the repository at this point in the history
  • Loading branch information
ilmat192 committed Apr 24, 2018
1 parent 36fe07e commit 8a0acd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ task bundle(type: (isWindows()) ? Zip : Tar) {
task uploadBundle {
dependsOn ':bundle'
doLast {
def kind = konanVersion.contains("dev") ? "dev" : "releases"
def kind = (KonanVersion.CURRENT.meta == MetaVersion.DEV) ? "dev" : "releases"
def ftpSettings = [
server: project.findProperty("cdnUrl") ?: System.getenv("CDN_URL"),
userid: project.findProperty("cdnUser") ?: System.getenv("CDN_USER"),
Expand Down

0 comments on commit 8a0acd8

Please sign in to comment.