diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-03-18 03:24:59 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-03-18 03:24:59 +0200 |
commit | fcea005489c37f84003959c9b29bacb584e3a42f (patch) | |
tree | bf7e35ab067d456d467b21908440605fcda7923e /bin/ak-fs-add | |
parent | 4c1b4d16cebe5db4afc95ba71f7022ee9c2f6e45 (diff) | |
download | arching-kaos-tools-fcea005489c37f84003959c9b29bacb584e3a42f.tar.gz arching-kaos-tools-fcea005489c37f84003959c9b29bacb584e3a42f.tar.bz2 arching-kaos-tools-fcea005489c37f84003959c9b29bacb584e3a42f.zip |
Removed trailing slash
Diffstat (limited to 'bin/ak-fs-add')
-rwxr-xr-x | bin/ak-fs-add | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/ak-fs-add b/bin/ak-fs-add index e579212..37fe43b 100755 --- a/bin/ak-fs-add +++ b/bin/ak-fs-add @@ -34,17 +34,17 @@ else fi # The directory where the chunked data will be living at -CHKDIR="$AK_WORKDIR/ftr/" +CHKDIR="$AK_WORKDIR/ftr" # The directory for the map files so we can reconstruct the file -FILEMAPSDIR="$AK_WORKDIR/fmp/" +FILEMAPSDIR="$AK_WORKDIR/fmp" # Merkle tree file/references -MERKLEDIR="$AK_WORKDIR/fmrk/" +MERKLEDIR="$AK_WORKDIR/fmrk" # A temporary root dir to work on TEMPORARYDIR="$(ak-tempassin)" # A subdir to split the files there -TECHDIR="$TEMPORARYDIR/chks/" +TECHDIR="$TEMPORARYDIR/chks" # A pin point to return from where we came from -CURRENTDIR="$(pwd)/" +CURRENTDIR="$(pwd)" # Our snippet for logging debug info source $AK_LIBDIR/_ak_logit |