You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2018/04/09 19:13:09 UTC

logging-log4j-scala git commit: Fix tag lookup

Repository: logging-log4j-scala
Updated Branches:
  refs/heads/master dc389ab2a -> 49ecc5911


Fix tag lookup


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/commit/49ecc591
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/tree/49ecc591
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/diff/49ecc591

Branch: refs/heads/master
Commit: 49ecc5911e4c434b1f1884b92e4b8b0eea42ce59
Parents: dc389ab
Author: Matt Sicker <bo...@gmail.com>
Authored: Mon Apr 9 14:12:58 2018 -0500
Committer: Matt Sicker <bo...@gmail.com>
Committed: Mon Apr 9 14:12:58 2018 -0500

----------------------------------------------------------------------
 create-distributions.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/blob/49ecc591/create-distributions.sh
----------------------------------------------------------------------
diff --git a/create-distributions.sh b/create-distributions.sh
index 9750ea6..ddf6dd9 100755
--- a/create-distributions.sh
+++ b/create-distributions.sh
@@ -22,7 +22,7 @@ function sign_file() {
 function create_sources_from_tag() {
   out_format=$1
   release_version=$2
-  git archive --prefix=apache-log4j-api-scala-${release_version}-src/ -o target/apache-log4j-api-scala-${release_version}-src.${out_format} ${release_version}
+  git archive --prefix=apache-log4j-api-scala-${release_version}-src/ -o target/apache-log4j-api-scala-${release_version}-src.${out_format} v${release_version}
   sign_file target/apache-log4j-api-scala-${release_version}-src.${out_format}
 }