Compare commits

...

3 commits

Author SHA1 Message Date
6e415108c5 Add share/sourcezap/{LICENSE,RELNOTES}
Some checks are pending
sourcezap / shellcheck (push) Waiting to run
2024-07-19 19:42:30 -03:00
7453afcf37 Update bin/sourcezap 2024-07-19 19:40:13 -03:00
3736e6f15b Update print.sh 2024-07-19 17:46:03 -03:00
4 changed files with 3 additions and 6 deletions

View file

@ -13,10 +13,7 @@ revision="${installdir}"/.sourcezap
##
# functions
printerr()
{
"${libexec}"/utils/printerr "${1}"
}
. "${libexec}"/functions/print.sh
require_dependency()
{

View file

@ -2,10 +2,10 @@
printok()
{
printf "ok: %s\n" "${@}" > /dev/stdout
printf "ok: %s\n" "${1}" > /dev/stdout
}
printerr()
{
printf "error: %s\n" "${@}" > /dev/stderr
printf "error: %s\n" "${1}" > /dev/stderr
}