From: AJ ONeal Date: Fri, 29 Oct 2021 17:25:38 +0000 (-0600) Subject: bugfix(postgres): mkdir -p ~/Applications before use X-Git-Url: https://git.josue.xyz/?p=webi-installers%2F.git;a=commitdiff_plain;h=14f590f5a5ba9f614843441a0f752c2754b47f84 bugfix(postgres): mkdir -p ~/Applications before use --- 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 }