From 786e748439d011707b4e0e713eb9412fde2befe5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Sat, 13 Jul 2024 16:28:43 +0200 Subject: [PATCH] coding style --- scripts/_common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 0c255f3..d41030f 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -45,14 +45,14 @@ _ynh_caerp_build_python() { _ynh_caerp_migratedb() { pushd "$install_dir" 2>&1 - ynh_exec_as $app "$install_dir/venv/bin/caerp-admin" "$install_dir/caerp.ini" \ + ynh_exec_as "$app" "$install_dir/venv/bin/caerp-admin" "$install_dir/caerp.ini" \ syncdb popd 2>&1 } _ynh_caerp_add_admin() { pushd "$install_dir" 2>&1 - ynh_exec_as $app "$install_dir/venv/bin/caerp-admin" "$install_dir/caerp.ini" \ + ynh_exec_as "$app" "$install_dir/venv/bin/caerp-admin" "$install_dir/caerp.ini" \ useradd --group=admin --user="admin" --pwd="$password" --email="admin@$domain" popd 2>&1 }