Skip to content

Commit

Permalink
add more logs in build files
Browse files Browse the repository at this point in the history
  • Loading branch information
Walid Lezzar committed Mar 26, 2020
1 parent 14cbe04 commit 0dbcabf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dev/scripts/build-zoe-cli-archive-with-jdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ package_dir=$(mktemp -d)
package=$(find "${package_dir}" -maxdepth 1 -name 'zoe*.zip')

[[ -z "${package}" ]] && \
{ echo "package not found in: ${package_dir}" >&2; exit 1; }
{ echo "package not found in: ${package_dir} (files: $(ls ${package_dir}))" >&2; exit 1; }

echo "${package}"
2 changes: 1 addition & 1 deletion dev/scripts/build-zoe-cli-archive-without-jdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ package_dir=$(mktemp -d)
package=$(find "${package_dir}" -maxdepth 1 -name 'zoe*.'${archive_type})

[[ -z "${package}" ]] && \
{ echo "package not found in: ${package_dir}" >&2; exit 1; }
{ echo "package not found in: ${package_dir} (files: $(ls ${package_dir}))" >&2; exit 1; }

echo ${package}
2 changes: 1 addition & 1 deletion dev/scripts/build-zoe-cli-installer-with-jdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ package_dir=$(mktemp -d)
package=$(find "${package_dir}" -maxdepth 1 -name 'zoe*.'${installer_type})

[[ -z "${package}" ]] && \
{ echo "package not found in: ${package_dir}" >&2; exit 1; }
{ echo "package not found in: ${package_dir} (files: $(ls ${package_dir}))" >&2; exit 1; }

echo "$package"

0 comments on commit 0dbcabf

Please sign in to comment.