diff --git a/bin/tags/FilterNotesByTMSUTag.sh b/bin/tags/FilterNotesByTMSUTag.sh index cdc8462..ce263da 100755 --- a/bin/tags/FilterNotesByTMSUTag.sh +++ b/bin/tags/FilterNotesByTMSUTag.sh @@ -35,7 +35,6 @@ function main() { function checkDependencies() { command -v rg >/dev/null 2>&1 || { echo >&2 "I require ripgrep but it's not installed. Aborting."; exit 1; } command -v sd >/dev/null 2>&1 || { echo >&2 "I require sd (sed replacement) but it's not installed. Aborting."; exit 1; } - command -v xclip >/dev/null 2>&1 || { echo >&2 "I require xclip but it's not installed. Aborting."; exit 1; } command -v tmsu >/dev/null 2>&1 || { echo >&2 "I require TMSU but it's not installed. Aborting."; exit 1; } }