We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bba8d3 commit 148c129Copy full SHA for 148c129
1 file changed
scripts/get-pcr.sh
@@ -29,6 +29,18 @@ if ! command -v yq &> /dev/null; then
29
exit 1
30
fi
31
32
+if ! command -v skopeo &> /dev/null; then
33
+ echo "ERROR: skopeo is required but not installed"
34
+ echo "Please install skopeo: https://github.com/containers/skopeo/blob/main/install.md"
35
+ exit 1
36
+fi
37
+
38
+if ! command -v podman &> /dev/null; then
39
+ echo "ERROR: podman is required but not installed"
40
+ echo "Please install podman: https://podman.io/docs/installation"
41
42
43
44
# 3. Check values-global.yaml exists
45
if [ ! -f "values-global.yaml" ]; then
46
echo "ERROR: values-global.yaml not found in current directory"
0 commit comments