diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-03-17 21:58:55 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-03-17 21:58:55 +0200 |
commit | 95b1364f4aa1bafdcfcbae99387555c9d06c8ce2 (patch) | |
tree | c8677548971689ba2433bc3b4896b9392ee7bc0e /lib/_ak_fs | |
parent | b4409d46cccc03c8e614b95f51bd4fef6aca1ff5 (diff) | |
download | arching-kaos-tools-95b1364f4aa1bafdcfcbae99387555c9d06c8ce2.tar.gz arching-kaos-tools-95b1364f4aa1bafdcfcbae99387555c9d06c8ce2.tar.bz2 arching-kaos-tools-95b1364f4aa1bafdcfcbae99387555c9d06c8ce2.zip |
Removes annoying doublespace from first line of AKFS map (sha512sum output oddness)origin/pkg-manager
Diffstat (limited to 'lib/_ak_fs')
-rwxr-xr-x | lib/_ak_fs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -364,7 +364,7 @@ function _ak_fs_from_map_get_original_filename(){ then if [ -f "$AK_MAPSDIR/$1" ] then - cat $AK_MAPSDIR/$1 | tr '\n' ' ' | awk '{ print $2 }' + cat $AK_MAPSDIR/$1 | sed -e 's/ / /g;' | tr '\n' ' ' | awk '{ print $2 }' else _ak_log_error "Map $1 was not found" fi |