From df64451d4c5aef17b0f52c9d35d290b27202be69 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Wed, 17 Jun 2020 20:33:07 -0600 Subject: [PATCH] webi/template.bash => _webi/template.sh --- _example/install.sh | 4 ++-- caddy/install.sh | 2 +- deno/install.sh | 2 +- flutter/install.sh | 2 +- golang/install.sh | 4 ++-- hugo/install.sh | 2 +- node/install.sh | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/_example/install.sh b/_example/install.sh index 2794685..91a8cf5 100644 --- a/_example/install.sh +++ b/_example/install.sh @@ -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" } diff --git a/caddy/install.sh b/caddy/install.sh index d46c52f..8d18a40 100644 --- a/caddy/install.sh +++ b/caddy/install.sh @@ -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 diff --git a/deno/install.sh b/deno/install.sh index 393f336..06d83b2 100644 --- a/deno/install.sh +++ b/deno/install.sh @@ -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 diff --git a/flutter/install.sh b/flutter/install.sh index 4feb311..861d67f 100644 --- a/flutter/install.sh +++ b/flutter/install.sh @@ -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" diff --git a/golang/install.sh b/golang/install.sh index 30edb69..51fd659 100644 --- a/golang/install.sh +++ b/golang/install.sh @@ -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" diff --git a/hugo/install.sh b/hugo/install.sh index 7326ccf..5911202 100644 --- a/hugo/install.sh +++ b/hugo/install.sh @@ -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" } diff --git a/node/install.sh b/node/install.sh index 4dd6655..add5022 100644 --- a/node/install.sh +++ b/node/install.sh @@ -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 -- 2.25.1