webi/template.bash => _webi/template.sh
authorAJ ONeal <coolaj86@gmail.com>
Thu, 18 Jun 2020 02:33:07 +0000 (20:33 -0600)
committerAJ ONeal <coolaj86@gmail.com>
Thu, 18 Jun 2020 02:33:07 +0000 (20:33 -0600)
_example/install.sh
caddy/install.sh
deno/install.sh
flutter/install.sh
golang/install.sh
hugo/install.sh
node/install.sh

index 27946858cec8884dba2f196e87bd72150eb43632..91a8cf5f17e2f9ccbb6241311036ea33584f7666 100644 (file)
@@ -44,7 +44,7 @@ pkg_link() {
 }
 
 pkg_pre_install() {
-    # web_* are defined in webi/template.bash at https://github.com/webinstall/packages
+    # web_* are defined in _webi/template.sh at https://github.com/webinstall/packages
 
     # if selected version is installed, re-link it and quit
     webi_check
@@ -70,7 +70,7 @@ pkg_install() {
 pkg_post_install() {
     pkg_link
 
-    # web_path_add is defined in webi/template.bash at https://github.com/webinstall/packages
+    # web_path_add is defined in _webi/template.sh at https://github.com/webinstall/packages
     webi_path_add "$pkg_dst_bin"
 }
 
index d46c52f7826465a56c80d8573d84834cf4cdbe73..8d18a40d0c03f348658ede9dc7ebe0a7e0ba8d8c 100644 (file)
@@ -4,7 +4,7 @@
 # There is no magic!
 # The custom functions for Caddy are here.
 # The generic functions - version checks, download, extract, etc - are here:
-#   - https://github.com/webinstall/packages/branches/master/webi/template.bash
+#   - https://github.com/webinstall/packages/branches/master/_webi/template.sh
 
 set -e
 set -u
index 393f336c8a8826af70690fd06d253a81fa892178..06d83b2db060d18f5f33a90bcb8bb6dd13404302 100644 (file)
@@ -2,7 +2,7 @@
 
 # The custom functions for Deno are here.
 # For the generic functions - version checks, download, extract, etc:
-# See https://github.com/webinstall/packages/branches/master/webi/template.bash
+# See https://github.com/webinstall/packages/branches/master/_webi/template.sh
 
 set -e
 set -u
index 4feb311e5e14fd754cd2c7be62272effdd2032a8..861d67f1f843416f8d6466beb6189fb6e789b9c1 100644 (file)
@@ -8,7 +8,7 @@ set -u
 #       pkg_src, pkg_src_bin, pkg_src_cmd
 #       pkg_dst, pkg_dst_bin, pkg_dst_cmd
 #
-# Their defaults are defined in webi/template.bash at https://github.com/webinstall/packages
+# Their defaults are defined in _webi/template.sh at https://github.com/webinstall/packages
 
 pkg_cmd_name="flutter"
 
index 30edb69aa68ec74c22ec67406dfced812a7545d0..51fd6598a03c6951b8c63ce5ad54c2b0f53c1a85 100644 (file)
@@ -12,7 +12,7 @@ pkg_cmd_name="go"
 #       pkg_src, pkg_src_bin, pkg_src_cmd
 #       pkg_dst, pkg_dst_bin, pkg_dst_cmd
 #
-# Their defaults are defined in webi/template.bash at https://github.com/webinstall/packages
+# Their defaults are defined in _webi/template.sh at https://github.com/webinstall/packages
 
 pkg_get_current_version() {
     # 'go version' has output in this format:
@@ -46,7 +46,7 @@ pkg_link() {
 pkg_post_install() {
     webi_link
 
-    # web_path_add is defined in webi/template.bash at https://github.com/webinstall/packages
+    # web_path_add is defined in _webi/template.sh at https://github.com/webinstall/packages
     # Updates PATH with
     #       "$HOME/.local/opt/go"
     webi_path_add "$pkg_dst_bin"
index 7326ccf885062338bbcd6c67562acc385908f09a..59112022ed23d81ad31ae51faf182a30f97fa4c9 100644 (file)
@@ -52,7 +52,7 @@ pkg_post_install() {
     # just in case we add something in the future
     pkg_link
 
-    # web_path_add is defined in webi/template.bash at https://github.com/webinstall/packages
+    # 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 4dd6655bb0f60e041133c1eb04c0f39342237b15..add502255560d7ec12a4334a99127157be05f64f 100644 (file)
@@ -4,7 +4,7 @@
 # There is no magic!
 # The custom functions for node are here.
 # The generic functions - version checks, download, extract, etc - are here:
-#   - https://github.com/webinstall/packages/branches/master/webi/template.bash
+#   - https://github.com/webinstall/packages/branches/master/_webi/template.sh
 
 set -e
 set -u