bugfix pgAdmin 4.app; cleanup others
authorAJ ONeal <aj@therootcompany.com>
Thu, 18 Jun 2020 06:59:08 +0000 (06:59 +0000)
committerAJ ONeal <aj@therootcompany.com>
Thu, 18 Jun 2020 06:59:08 +0000 (06:59 +0000)
golang/install.sh
hugo/install.sh
postgres/install.sh

index 51fd6598a03c6951b8c63ce5ad54c2b0f53c1a85..5574392423ede02bc44b72fa84c3f92eff6dd0d8 100644 (file)
@@ -44,7 +44,7 @@ pkg_link() {
 }
 
 pkg_post_install() {
-    webi_link
+    pkg_link
 
     # web_path_add is defined in _webi/template.sh at https://github.com/webinstall/packages
     # Updates PATH with
index 59112022ed23d81ad31ae51faf182a30f97fa4c9..04bc4f772e147a943905562f4357ca3fa7425e3c 100644 (file)
@@ -2,11 +2,7 @@ set -e
 set -u
 
 pkg_cmd_name="hugo"
-pkg_dst="$HOME/.local"
-
-# pkg_src isn't used in this script,
-# just setting a junk value for completeness (and possibly debug output)
-pkg_src="$HOME/Downloads/$WEBI_PKG_FILE"
+WEBI_SINGLE=true
 
 pkg_get_current_version() {
     # 'hugo version' has output in this format:
@@ -15,44 +11,3 @@ pkg_get_current_version() {
     #       0.72.0
     echo "$(hugo version 2>/dev/null | head -n 1 | cut -d' ' -f5 | cut -d '-' -f1 | sed 's:^v::')"
 }
-
-pkg_format_cmd_version() {
-    # 'node v12.8.0' is the canonical version format for node
-    my_version="$1"
-    echo "$pkg_cmd_name v$my_version"
-}
-
-pkg_link() {
-    # hugo is just a single file, no directory linking to do
-    true
-}
-
-pkg_pre_install() {
-    # if selected version is installed, quit
-    webi_check
-    # will save to ~/Downloads/$WEBI_PKG_FILE by default
-    webi_download
-    # supported formats (.xz, .tar.*, .zip) will be extracted to $WEBI_TMP
-    webi_extract
-}
-
-pkg_install() {
-    pushd "$WEBI_TMP" 2>&1 >/dev/null
-
-        # rename the entire extracted folder to the new location
-        # (this will be "$HOME/.local/opt/node-v$WEBI_VERSION" by default)
-        mkdir -p "$pkg_dst_bin"
-        mv ./"$pkg_cmd_name"* "$pkg_dst_cmd"
-        chmod a+x "$pkg_dst_cmd"
-
-    popd 2>&1 >/dev/null
-}
-
-pkg_post_install() {
-    # just in case we add something in the future
-    pkg_link
-
-    # web_path_add is defined in _webi/template.sh at https://github.com/webinstall/packages
-    # Adds "$HOME/.local/opt/node" to PATH
-    webi_path_add "$pkg_dst_bin"
-}
index c21cdb7474822517be0aca0d8f2c4749942053ca..a8769f553560c54eec72a71b5b1493b5bf72f40a 100644 (file)
@@ -25,7 +25,7 @@ pkg_install() {
 pkg_link() {
     # rm -f "$HOME/.local/opt/postgres"
     rm -f "$pkg_dst"
-    rm -f "$HOME/Applications/pgAdmin*.app" || true
+    rm -f "$HOME/Applications/pgAdmin"*.app || true
 
     # ln -s "$HOME/.local/opt/postgres-v10.13" "$HOME/.local/opt/postgres"
     ln -s "$pkg_src" "$pkg_dst"