From 12b8a2e974cb91c2e2bff472dfe5e54547a2da9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Mon, 10 Jun 2024 19:00:27 +0200 Subject: [PATCH] mkdir as user --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index db039c0..b1ab0eb 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -29,7 +29,7 @@ function build_libheif { export GOCACHE="$install_dir/build/.cache" pushd "$install_dir/libheif" || ynh_die - mkdir build + ynh_exec_as "$app" mkdir build pushd build ynh_exec_and_print_stderr_only_if_error ynh_exec_as "$app" \ cmake --preset=release --prefix="$install_dir/local" -DWITH_GDK_PIXBUF=OFF -G Ninja ..