liquibase: include jars in --version output
Moved jars to the `internal/lib` directory in an attempt to make them appear in the `liquibase --version` output. However it didn't help. I left the change though because the default installer also puts the jars into internal/lib.
This commit is contained in:
@@ -48,7 +48,10 @@ stdenv.mkDerivation rec {
|
||||
in
|
||||
''
|
||||
mkdir -p $out
|
||||
mv ./{lib,licenses,internal/lib/*.jar} $out/
|
||||
mv ./{lib,licenses} $out/
|
||||
|
||||
mkdir -p $out/internal/lib
|
||||
mv ./internal/lib/*.jar $out/internal/lib/
|
||||
|
||||
mkdir -p $out/share/doc/${pname}-${version}
|
||||
mv LICENSE.txt \
|
||||
@@ -63,6 +66,7 @@ stdenv.mkDerivation rec {
|
||||
#!/usr/bin/env bash
|
||||
# taken from the executable script in the source
|
||||
CP=""
|
||||
${addJars "$out/internal/lib"}
|
||||
${addJars "$out/lib"}
|
||||
${addJars "$out"}
|
||||
${lib.concatStringsSep "\n" (map (p: addJars "${p}/share/java") extraJars)}
|
||||
|
||||
Reference in New Issue
Block a user