Comparing version 1.0.23 to 1.0.24
{ | ||
"name": "bashlink", | ||
"version": "1.0.23", | ||
"version": "1.0.24", | ||
"license": "CC-BY-3.0", | ||
@@ -5,0 +5,0 @@ "description": "a high reliable bash library", |
@@ -32,12 +32,13 @@ <!-- #!/usr/bin/env markdown | ||
```bash | ||
module_name_bashlink_file_path="$(mktemp --directory)/bashlink/" | ||
module_name_bashlink_path="$(mktemp --directory)/bashlink/" | ||
mkdir "$module_name_bashlink_file_path" | ||
wget \ | ||
https://goo.gl/UKF5JG \ | ||
--output-document "${module_name_bashlink_file_path}module.sh" | ||
--output-document "${module_name_bashlink_path}module.sh" | ||
# shellcheck disable=SC1091 | ||
source "${module_name_bashlink_file_path}/module.sh" | ||
source "${module_name_bashlink_path}/module.sh" | ||
bl_module_retrieve_remote_modules=true | ||
bl.module.import bashlink.logging | ||
... | ||
rm --recursive "$module_name_bashlink_path" | ||
``` | ||
@@ -44,0 +45,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
204549
49