Skip to content

Commit 5bdef4e

Browse files
committed
bug fix
1 parent 6a92808 commit 5bdef4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/citybot/ant/AzureBlobFileUpload.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public void execute() {
101101
File source = new File(ds.getBasedir() + "/" + filename);
102102
String blobname = filename.substring(filename.lastIndexOf("/")+1);
103103
if(getBlobpath()!=null){
104-
blobname = getBlobpath() + File.pathSeparator + blobname;
104+
blobname = getBlobpath() + "/" + blobname;
105105
}
106106
CloudBlockBlob blobHandle = blobContainer.getBlockBlobReference(blobname);
107107
blobHandle.upload(new FileInputStream(source), source.length());

0 commit comments

Comments
 (0)