Stop checking return code of post_install scripts in init_deps.sh

This commit is contained in:
Théophile Diot 2023-07-03 12:21:37 -04:00
parent fcd230192f
commit 008dc09a60
No known key found for this signature in database
GPG Key ID: E752C80DB72BB014
1 changed files with 1 additions and 1 deletions

View File

@ -60,6 +60,6 @@ do
if [ "$post_install" != "null" ] ; then
echo " Running post install script for ${name}"
do_and_check_cmd bash -c "$post_install"
bash -c "$post_install"
fi
done