Skip to content

Commit

Permalink
Merge pull request #832 from freekngdom/patch-1
Browse files Browse the repository at this point in the history
rm -f "$tmp_dir/item-*.pb"  -->  rm -f "$tmp_dir"/item-*.pb
  • Loading branch information
tresni authored Aug 13, 2017
2 parents b9153e2 + 30e9c58 commit d7df49f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion System/clipboard-history.3s.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fi

# If user clicked clear, remove history items
if [[ "$1" = "clear" ]]; then
rm -f "$tmp_dir/item-*.pb"
rm -f "$tmp_dir"/item-*.pb
osascript -e "display notification \"Cleared clipboard history\" with title \"BitBar Clipboard History\"" &> /dev/null
exit
fi
Expand Down

0 comments on commit d7df49f

Please sign in to comment.