From 14f590f5a5ba9f614843441a0f752c2754b47f84 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 29 Oct 2021 11:25:38 -0600 Subject: [PATCH] bugfix(postgres): mkdir -p ~/Applications before use --- postgres/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/postgres/install.sh b/postgres/install.sh index f0336fe..35d4625 100644 --- a/postgres/install.sh +++ b/postgres/install.sh @@ -29,6 +29,7 @@ pkg_link() { # ln -s "$HOME/.local/opt/postgres-v10.13" "$HOME/.local/opt/postgres" ln -s "$pkg_src" "$pkg_dst" + mkdir -p ~/Applications ln -s "$pkg_src/pgAdmin 4.app" "$HOME/Applications/pgAdmin 4.app" || true } -- 2.25.1