mirror of
https://github.com/TheLocehiliosan/yadm
synced 2024-10-27 20:34:27 +00:00
Use -f -
with tar -x
, -c
, and -t
operations (#18)
This commit is contained in:
parent
fa286f0c9d
commit
d500ccfbd9
4
yadm
4
yadm
@ -214,7 +214,7 @@ function decrypt() {
|
||||
fi
|
||||
|
||||
#; decrypt the archive
|
||||
(gpg -d "$YADM_ARCHIVE" || echo 1) | tar v$tar_option -C "$YADM_WORK"
|
||||
(gpg -d "$YADM_ARCHIVE" || echo 1) | tar v${tar_option}f - -C "$YADM_WORK"
|
||||
if [ $? = 0 ] ; then
|
||||
[ ! "$DO_LIST" = "YES" ] && echo "All files decrypted."
|
||||
else
|
||||
@ -261,7 +261,7 @@ function encrypt() {
|
||||
echo
|
||||
|
||||
#; encrypt all files which match the globs
|
||||
tar -c "${GLOBS[@]}" | gpg --yes "${GPG_OPTS[@]}" --output "$YADM_ARCHIVE"
|
||||
tar -f - -c "${GLOBS[@]}" | gpg --yes "${GPG_OPTS[@]}" --output "$YADM_ARCHIVE"
|
||||
if [ $? = 0 ]; then
|
||||
echo "Wrote new file: $YADM_ARCHIVE"
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user