From 43cbb7fc5f3622127882058eac5a7c44fc0989de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Mon, 3 Jun 2024 07:57:58 +0700 Subject: [PATCH] hugo: no completion for aarch64-musl --- srcpkgs/hugo/template | 3 +++ 1 file changed, 3 insertions(+) diff --git a/srcpkgs/hugo/template b/srcpkgs/hugo/template index e58113f470d..f3efddafa38 100644 --- a/srcpkgs/hugo/template +++ b/srcpkgs/hugo/template @@ -23,8 +23,11 @@ post_install() { vman man/$page done + # https://build.voidlinux.org/builders/aarch64-musl_builder/builds/49650/steps/shell_3/logs/stdio + if [ "$XBPS_TARGET_MACHINE" != "aarch64-musl" ]; then for shell in bash fish zsh; do vtargetrun $hugo completion $shell > ${pkgname}.$shell vcompletion ${pkgname}.$shell $shell done + fi }