meta: Update various links to https

This commit is contained in:
Tomas Babej
2021-03-12 07:55:55 -05:00
parent b4a36d942e
commit 0d1542ccd7
14 changed files with 16 additions and 16 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# For more information, see https://github.com/wbsch/bash_tap
# Subject to the MIT License. See LICENSE file or http://opensource.org/licenses/MIT
# Subject to the MIT License. See LICENSE file or https://opensource.org/licenses/MIT
# Copyright (c) 2015 - 2021, Wilhelm Schürmann
function bashtap_on_error {

View File

@@ -8,7 +8,7 @@
# "taskrc" is a file set up in bash_tap_tw.sh:setup_taskrc(), and can be
# appended to or changed as needed.
#
# Subject to the MIT License. See LICENSE file or http://opensource.org/licenses/MIT
# Subject to the MIT License. See LICENSE file or https://opensource.org/licenses/MIT
# Copyright (c) 2015 - 2021, Wilhelm Schürmann
function setup_taskrc {

View File

@@ -10,7 +10,7 @@ echo "% Called at $(python3 -c 'import time; print(time.time())') with '$@'" >>
# Log what arrives via stdin to ${IN} and what comes via stdout to ${OUT}
$ORIGINALHOOK "$@" < <(tee -a ${IN}) > >(tee -a ${OUT})
# More on the < <() syntax at: http://tldp.org/LDP/abs/html/process-sub.html
# More on the < <() syntax at: https://tldp.org/LDP/abs/html/process-sub.html
EXITCODE=$?
echo "! Exit code: ${EXITCODE}" >> ${OUT}