1
0
Fork 0

[archivers] xzize: output file to same directory

Fix bug that caused the output file to always be generated in the
current working directory.
Dieser Commit ist enthalten in:
Matteo Cypriani 2019-10-28 16:20:50 +01:00
Ursprung 4147272b47
Commit d321ec9761
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -36,7 +36,7 @@ test_extension()
NEWEXTENSION="$3"
fi
BASE="$(basename "$FILE" ."$EXTENSION")"
BASE="$(echo "$FILE" | sed "s/\.${EXTENSION}//")"
if [ "$BASE" != "$FILE" ] ; then
DEST="$BASE".$NEWEXTENSION
return 0