From 9a8f902d3ca78e4e99174d31716100300143d108 Mon Sep 17 00:00:00 2001 From: rand00 Date: Wed, 23 Mar 2022 20:54:35 +0100 Subject: [PATCH] packaging/visualizations.sh: Failing when unsupported platform --- packaging/visualizations.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/visualizations.sh b/packaging/visualizations.sh index f57e3ec..5e5d9a5 100755 --- a/packaging/visualizations.sh +++ b/packaging/visualizations.sh @@ -84,7 +84,7 @@ mktemp_aux () { elif [ "$(uname)" = "FreeBSD" ]; then mktemp -t "$1" else - mktemp -t "$1.XXX" #< todo what to choose here + echo 'Unsupported platform'; exit 1 fi } TMPTREE=$(mktemp_aux treeviz) @@ -109,7 +109,7 @@ stat_aux () { elif [ "$(uname)" = "FreeBSD" ]; then stat -f "%z" "$1" else - stat -c "%s" "$1" #< todo what to choose here + echo 'Unsupported platform'; exit 1 fi }