Skip to content

Commit

Permalink
Removes screaming faces D:
Browse files Browse the repository at this point in the history
  • Loading branch information
ikirker committed Dec 2, 2020
1 parent a3bbafb commit 03df722
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pipe-give
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ msg info "transferring files..."

# Run the actual transfer, piping tar to the data fifo.
if [[ "$PV" == "(none)" ]]; then
tar -cv -- "$@" >"$fifo_dir/data" || msg fatal "there was a problem while transferring the files D:"
tar -cv -- "$@" >"$fifo_dir/data" || msg fatal "there was a problem while transferring the files"
else
tar -cv -- "$@" | "$PV" >"$fifo_dir/data" || msg fatal "there was a problem while transferring the files D:"
tar -cv -- "$@" | "$PV" >"$fifo_dir/data" || msg fatal "there was a problem while transferring the files"
fi

msg info "transfer complete"
Expand Down
2 changes: 1 addition & 1 deletion pipe-receive
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ fi
# Report back so the sender can tell whether there was a problem.
if [[ "$transfer_status" == "problem" ]]; then
echo "problem" > "$transfer_fifo_dir/ctrl"
msg fatal "there was a problem transferring the files D:"
msg fatal "there was a problem transferring the files"
else
echo "success" > "$transfer_fifo_dir/ctrl"
msg info "transfer complete"
Expand Down

0 comments on commit 03df722

Please sign in to comment.