Skip to content

Commit 76c1eb4

Browse files
committed
Fix publish script
1 parent ee3b33c commit 76c1eb4

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)