Skip to content

Commit

Permalink
deploy script copied wrong jar file
Browse files Browse the repository at this point in the history
Signed-off-by: Terence Parr <parrt@antlr.org>
  • Loading branch information
parrt committed Apr 11, 2022
1 parent e37fea1 commit 661d8ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/deploy_to_website.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def copy_jars(release_version):
# release_version = release_version+"-SNAPSHOT" # testing
print("Jars copied:")
runme(f"cp {ANTLR_M2_ROOT}/antlr4-runtime/{release_version}/antlr4-runtime-{release_version}.jar {WEBSITE_ROOT}/download/antlr-runtime-{release_version}.jar")
runme(f"cp {ANTLR_M2_ROOT}/antlr4/{release_version}/antlr4-{release_version}.jar {WEBSITE_ROOT}/download/antlr-{release_version}-complete.jar")
runme(f"cp {ANTLR_M2_ROOT}/antlr4/{release_version}/antlr4-{release_version}-complete.jar {WEBSITE_ROOT}/download/antlr-{release_version}-complete.jar")
os.chdir(WEBSITE_ROOT+"/download")
runme(f"git add antlr-{release_version}-complete.jar")
runme(f"git add antlr-runtime-{release_version}.jar")
Expand Down

0 comments on commit 661d8ec

Please sign in to comment.