suppression des pwd inutiles

This commit is contained in:
OniriCorpe 2022-05-07 17:43:35 +02:00
parent 1b364404fb
commit 341f9da5a2
2 changed files with 3 additions and 3 deletions

View file

@ -11,13 +11,13 @@ then
source_path="$1"
else
# sinon on utilise le dossier "content" à la racine de notre script
source_path="${PWD}"/content
source_path=content
fi
# on génère la date et on la fout dans le footer
date="$(date)"
sed "s/GEN_DATE/$date/" "${PWD}"/html/footer.html > "$tempdir/footer.html"
sed "s/GEN_DATE/$date/" html/footer.html > "$tempdir/footer.html"
# on cherche récursivement tous les fichiers ".gmi" dans le dossier de taff
@ -29,7 +29,7 @@ do
# dans le header.html, remplacer "<\-- TITLE -->" par le titre récupéré
# puis enregistrer le fichier ainsi modifié dans "temp/header.html"
sed "s#<\!-- TITLE -->#$title#" "${PWD}"/html/header.html > "$tempdir/header.html"
sed "s#<\!-- TITLE -->#$title#" html/header.html > "$tempdir/header.html"
# conversion du .gmi en .html
gmnitohtml < "$gmi_file" > "$tempdir/body.html"