Skip to content

Commit

Permalink
JGC-1 - Add delete, copy and move capabilities for Artifactory
Browse files Browse the repository at this point in the history
  • Loading branch information
eyalbe4 committed May 4, 2016
1 parent 3f63bbd commit 07060b7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions bintray_descriptors/darwin_amd64.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"subject": "jfrog"
},
"version": {
"name": "1.2.0-dev",
"vcs_tag": "1.2.0-dev",
"name": "1.2.0",
"vcs_tag": "1.2.0",
"gpgSign": false
},
"files":
[{"includePattern": "../../../../bin/darwin_amd64/jfrog", "uploadPattern": "1.2.0-dev/jfrog-cli-mac-386/jfrog"}],
[{"includePattern": "../../../../bin/darwin_amd64/jfrog", "uploadPattern": "1.2.0/jfrog-cli-mac-386/jfrog"}],
"publish": false
}
6 changes: 3 additions & 3 deletions bintray_descriptors/linux_386.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"subject": "jfrog"
},
"version": {
"name": "1.2.0-dev",
"vcs_tag": "1.2.0-dev",
"name": "1.2.0",
"vcs_tag": "1.2.0",
"gpgSign": false
},
"files":
[{"includePattern": "../../../../bin/jfrog", "uploadPattern": "1.2.0-dev/jfrog-cli-linux-386/jfrog"}],
[{"includePattern": "../../../../bin/jfrog", "uploadPattern": "1.2.0/jfrog-cli-linux-386/jfrog"}],
"publish": false
}
6 changes: 3 additions & 3 deletions bintray_descriptors/linux_amd64.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"subject": "jfrog"
},
"version": {
"name": "1.2.0-dev",
"vcs_tag": "1.2.0-dev",
"name": "1.2.0",
"vcs_tag": "1.2.0",
"gpgSign": false
},
"files":
[{"includePattern": "../../../../bin/jfrog", "uploadPattern": "1.2.0-dev/jfrog-cli-linux-amd64/jfrog"}],
[{"includePattern": "../../../../bin/jfrog", "uploadPattern": "1.2.0/jfrog-cli-linux-amd64/jfrog"}],
"publish": false
}
6 changes: 3 additions & 3 deletions bintray_descriptors/windows_amd64.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"subject": "jfrog"
},
"version": {
"name": "1.2.0-dev",
"vcs_tag": "1.2.0-dev",
"name": "1.2.0",
"vcs_tag": "1.2.0",
"gpgSign": false
},
"files":
[{"includePattern": "../../../../bin/windows_amd64/jfrog.exe", "uploadPattern": "1.2.0-dev/windows_amd64/jfrog.exe"}],
[{"includePattern": "../../../../bin/windows_amd64/jfrog.exe", "uploadPattern": "1.2.0/windows_amd64/jfrog.exe"}],
"publish": false
}
2 changes: 1 addition & 1 deletion utils/cliutils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func GetLogMsgPrefix(threadId int, dryRun bool) string {
}

func GetVersion() string {
return "1.2.0-dev"
return "1.2.0"
}

// Get the local root path, from which to start collecting artifacts to be uploaded to Artifactory.
Expand Down

0 comments on commit 07060b7

Please sign in to comment.