Skip to content

Commit 78287b7

Browse files
committed
Merge pull request Azure#532 from jianghaolu/dev
Fix publish script
2 parents ee3b33c + 76c1eb4 commit 78287b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/publish.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ def main(argv):
6666
os.system(cmd)
6767
else:
6868
os.system(cmd + " -Dfile=%s-%s.jar -Dgpg.passphrase=%s" % (pkg, version, argv[2]))
69-
os.system(cmd + " -Dfile=%s-%s-javadoc.jar -Dgpg.passphrase=%s" % (pkg, version, argv[2]))
70-
os.system(cmd + " -Dfile=%s-%s-sources.jar -Dgpg.passphrase=%s" % (pkg, version, argv[2]))
69+
os.system(cmd + " -Dfile=%s-%s-javadoc.jar -Dclassifier=javadoc -Dgpg.passphrase=%s" % (pkg, version, argv[2]))
70+
os.system(cmd + " -Dfile=%s-%s-sources.jar -Dclassifier=sources -Dgpg.passphrase=%s" % (pkg, version, argv[2]))
7171
print "Finished."
7272

7373

0 commit comments

Comments
 (0)