From c1fa4f9d6ee74c2465528be8b98043d09dcaa440 Mon Sep 17 00:00:00 2001 From: Vincent Riquer Date: Sat, 8 Feb 2025 23:38:29 +0100 Subject: [PATCH] replace paths with placeholders --- atom | 6 +++--- toys/checkextensions | 6 +++--- toys/checkgenre | 6 +++--- toys/checkmissing | 6 +++--- toys/cleandestinations | 6 +++--- toys/createindex | 6 +++--- toys/lowquality | 6 +++--- toys/missingtags | 6 +++--- 8 files changed, 24 insertions(+), 24 deletions(-) diff --git a/atom b/atom index ee00357..425d056 100755 --- a/atom +++ b/atom @@ -37,9 +37,9 @@ declare -A \ } declare -r \ - DOCDIR=./doc \ - LIBDIR=./lib \ - SHAREDIR=./share + DOCDIR=%DOCDIR% \ + LIBDIR=%LIBDIR% \ + SHAREDIR=%SHAREDIR% declare -r \ exampleconf=$DOCDIR/example.cfg \ schema=$SHAREDIR/schema.sql \ diff --git a/toys/checkextensions b/toys/checkextensions index 0783b98..6d69a12 100755 --- a/toys/checkextensions +++ b/toys/checkextensions @@ -23,9 +23,9 @@ declare -A \ } declare -r \ - DOCDIR=./doc \ - LIBDIR=./lib \ - SHAREDIR=./share + DOCDIR=%DOCDIR% \ + LIBDIR=%LIBDIR% \ + SHAREDIR=%SHAREDIR% declare -r \ exampleconf=$DOCDIR/example.cfg \ schema=$SHAREDIR/schema.sql \ diff --git a/toys/checkgenre b/toys/checkgenre index e2b55d4..2cf7977 100755 --- a/toys/checkgenre +++ b/toys/checkgenre @@ -23,9 +23,9 @@ declare -A \ } declare -r \ - DOCDIR=./doc \ - LIBDIR=./lib \ - SHAREDIR=./share + DOCDIR=%DOCDIR% \ + LIBDIR=%LIBDIR% \ + SHAREDIR=%SHAREDIR% declare -r \ exampleconf=$DOCDIR/example.cfg \ schema=$SHAREDIR/schema.sql \ diff --git a/toys/checkmissing b/toys/checkmissing index b56ba51..14a35e9 100755 --- a/toys/checkmissing +++ b/toys/checkmissing @@ -23,9 +23,9 @@ declare -A \ } declare -r \ - DOCDIR=./doc \ - LIBDIR=./lib \ - SHAREDIR=./share + DOCDIR=%DOCDIR% \ + LIBDIR=%LIBDIR% \ + SHAREDIR=%SHAREDIR% declare -r \ exampleconf=$DOCDIR/example.cfg \ schema=$SHAREDIR/schema.sql \ diff --git a/toys/cleandestinations b/toys/cleandestinations index 0b85453..5bdf8a6 100755 --- a/toys/cleandestinations +++ b/toys/cleandestinations @@ -23,9 +23,9 @@ declare -A \ } declare -r \ - DOCDIR=./doc \ - LIBDIR=./lib \ - SHAREDIR=./share + DOCDIR=%DOCDIR% \ + LIBDIR=%LIBDIR% \ + SHAREDIR=%SHAREDIR% declare -r \ exampleconf=$DOCDIR/example.cfg \ schema=$SHAREDIR/schema.sql \ diff --git a/toys/createindex b/toys/createindex index 139f9dd..b69d8c6 100755 --- a/toys/createindex +++ b/toys/createindex @@ -25,9 +25,9 @@ declare -A \ } declare -r \ - DOCDIR=./doc \ - LIBDIR=./lib \ - SHAREDIR=./share + DOCDIR=%DOCDIR% \ + LIBDIR=%LIBDIR% \ + SHAREDIR=%SHAREDIR% declare -r \ exampleconf=$DOCDIR/example.cfg \ schema=$SHAREDIR/schema.sql \ diff --git a/toys/lowquality b/toys/lowquality index 8ba3dd3..c3cfa8f 100755 --- a/toys/lowquality +++ b/toys/lowquality @@ -23,9 +23,9 @@ declare -A \ } declare -r \ - DOCDIR=./doc \ - LIBDIR=./lib \ - SHAREDIR=./share + DOCDIR=%DOCDIR% \ + LIBDIR=%LIBDIR% \ + SHAREDIR=%SHAREDIR% declare -r \ exampleconf=$DOCDIR/example.cfg \ schema=$SHAREDIR/schema.sql \ diff --git a/toys/missingtags b/toys/missingtags index 1fa2efc..a1999cc 100755 --- a/toys/missingtags +++ b/toys/missingtags @@ -24,9 +24,9 @@ declare -A \ } declare -r \ - DOCDIR=./doc \ - LIBDIR=./lib \ - SHAREDIR=./share + DOCDIR=%DOCDIR% \ + LIBDIR=%LIBDIR% \ + SHAREDIR=%SHAREDIR% declare -r \ exampleconf=$DOCDIR/example.cfg \ schema=$SHAREDIR/schema.sql \