From 401641a1396904b514f6cdb00fdac2e041152c3c Mon Sep 17 00:00:00 2001 From: Casey Brookes <58667871+caseybrookes@users.noreply.github.com> Date: Sat, 9 Sep 2023 10:58:53 -0400 Subject: [PATCH] fix(install): uuidgen and certutil add missing debian dependencies --- src/install_env.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/install_env.sh b/src/install_env.sh index 5c1f8c5..87c3903 100644 --- a/src/install_env.sh +++ b/src/install_env.sh @@ -303,6 +303,16 @@ for organization in {ehmpathy,ahbode}; do done done +####################### +## install certutil so that local dev certificates can be added to your browser as trusted +####################### +sudo apt-get install libnss3-tools + +####################### +## install uuid-runtime to enable uuidgen + getuuid commands +####################### +sudo apt-get install uuid-runtime + ####################### ## install ngrok #######################