Profilarr: standardize architecture case statements in scripts & v2 Support

This commit is contained in:
MickLesk
2026-05-19 08:23:20 +02:00
parent 9dc35463a9
commit 0586b1f29e
2 changed files with 7 additions and 10 deletions
+2 -2
View File
@@ -70,8 +70,8 @@ EOF
export VITE_CHANNEL=stable
$STD deno run -A npm:vite build
case "$ARCH" in
aarch64) DENO_TARGET="aarch64-unknown-linux-gnu" ;;
*) DENO_TARGET="x86_64-unknown-linux-gnu" ;;
aarch64) DENO_TARGET="aarch64-unknown-linux-gnu" ;;
*) DENO_TARGET="x86_64-unknown-linux-gnu" ;;
esac
$STD deno compile \
--no-check \