Minor updates

InternetArchive/repair_assets: Accidentally reverset the "sanity check"
    logic, so put it back the right way!

InternetArchive/view_derivatives: Started on the POD documentation but
    didn't get very far.
This commit is contained in:
Dave Morriss 2024-08-23 21:17:21 +01:00
parent dd3bf0c981
commit 6aff45a10b
2 changed files with 9 additions and 8 deletions

View File

@ -17,7 +17,7 @@
# AUTHOR: Dave Morriss (djm), Dave.Morriss@gmail.com # AUTHOR: Dave Morriss (djm), Dave.Morriss@gmail.com
# VERSION: 0.0.8 # VERSION: 0.0.8
# CREATED: 2024-05-10 21:26:31 # CREATED: 2024-05-10 21:26:31
# REVISION: 2024-08-22 21:48:44 # REVISION: 2024-08-23 11:55:25
# #
#=============================================================================== #===============================================================================
@ -64,18 +64,19 @@ define_colours
# #
# Sanity checks. Calling 'command' on a non-existent script/program will # Sanity checks. Calling 'command' on a non-existent script/program will
# return an empty string. This works for built-in stuff and things on the # return an empty string. This works for built-in stuff and things on the
# PATH. # PATH. These are all 'true' tests with the stuff in braces being run if they
# are not true.
# #
IA=$(command -v ia) IA=$(command -v ia)
[ -z "$IA" ] || { echo "Program 'ia' was not found"; exit 1; } [ -n "$IA" ] || { echo "Program 'ia' was not found"; exit 1; }
Q2T=$(command -v query2tt2) Q2T=$(command -v query2tt2)
[ -z "$Q2T" ] || { echo "Program 'query2tt2' was not found"; exit 1; } [ -n "$Q2T" ] || { echo "Program 'query2tt2' was not found"; exit 1; }
FIXAL="$BASEDIR/fix_asset_links" FIXAL="$BASEDIR/fix_asset_links"
[ -e "$FIXAL" ] || { echo "Program '$FIXAL' was not found"; exit 1; } [ -e "$FIXAL" ] || { echo "Program '$FIXAL' was not found"; exit 1; }
TUNNEL_IS_OPEN=$(command -v tunnel_is_open) TUNNEL_IS_OPEN=$(command -v tunnel_is_open)
[ -z "$TUNNEL_IS_OPEN" ] || { echo "Program 'tunnel_is_open' was not found"; exit 1; } [ -n "$TUNNEL_IS_OPEN" ] || { echo "Program 'tunnel_is_open' was not found"; exit 1; }
OPEN_TUNNEL=$(command -v open_tunnel) OPEN_TUNNEL=$(command -v open_tunnel)
[ -z "$OPEN_TUNNEL" ] || { echo "Program 'open_tunnel' was not found"; exit 1; } [ -n "$OPEN_TUNNEL" ] || { echo "Program 'open_tunnel' was not found"; exit 1; }
# #
# Make temporary files and set traps to delete them # Make temporary files and set traps to delete them

View File

@ -377,13 +377,13 @@ __END__
=head1 NAME =head1 NAME
<application name> - <One line description of application's purpose> view_derivatives - <One line description of application's purpose>
=head1 VERSION =head1 VERSION
The initial template usually just has: The initial template usually just has:
This documentation refers to <application name> version 0.0.2 This documentation refers to view_derivatives version 0.0.2
=head1 USAGE =head1 USAGE