Skip to content

Commit

Permalink
Fix hardcoded version in tarball generation
Browse files Browse the repository at this point in the history
  • Loading branch information
aaudiber committed Mar 2, 2018
1 parent 6cef292 commit 85050ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func addAdditionalFiles(srcPath, dstPath, version string) {
for _, jar := range []string{"client", "server"} {
oldLocation := filepath.Join(dstPath, "assembly/client/target", fmt.Sprintf("alluxio-assembly-%v-%v-jar-with-dependencies.jar", jar, version))
mkdir(filepath.Dir(oldLocation))
symlink(fmt.Sprintf("../../alluxio-%v-1.7.1-SNAPSHOT.jar", jar), oldLocation)
symlink(fmt.Sprintf("../../alluxio-%v-%v.jar", jar, version), oldLocation)
}
mkdir(filepath.Join(dstPath, "assembly/server/target"))
}
Expand Down

0 comments on commit 85050ad

Please sign in to comment.