We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 396f506 commit 055a6d2Copy full SHA for 055a6d2
3 files changed
distribution/assembly/dist-release.xml
@@ -34,6 +34,7 @@
34
</includes>
35
<excludes>
36
<exclude>*.formatted</exclude>
37
+ <exclude>scripts/*</exclude>
38
</excludes>
39
</fileSet>
40
<fileSet>
distribution/pom.xml
@@ -38,7 +38,7 @@
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
41
- <version>3.2.0</version>
+ <version>3.3.0</version>
42
<executions>
43
<execution>
44
<id>distribution</id>
modules/apim-cli/assembly/scripts/apim.sh
@@ -4,7 +4,7 @@ if [ -n "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]
4
then
5
#### echo "Using java given in JAVA_HOME"
6
_java=$JAVA_HOME/bin/java
7
-elif type -p java
+elif command -v java
8
9
#### echo "Using java found in the PATH"
10
_java=java
0 commit comments