25 lines
382 B
Bash
25 lines
382 B
Bash
#!/bin/bash
|
|
|
|
# Copyright IBM Corp. All Rights Reserved.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -euo pipefail
|
|
|
|
if [ "$#" -ne 2 ]; then
|
|
>&2 echo "Expected 2 directories got $#"
|
|
exit 2
|
|
fi
|
|
|
|
# SRC="$1"
|
|
META="$2"
|
|
|
|
if [ "$(jq -r .type "$META/metadata.json")" == "binary" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
>&2 cat $META/metadata.json
|
|
>&2 echo "binary is the only supported type"
|
|
|
|
exit 1
|