1
0
mirror of https://github.com/RyanGreenup/cadmus.git synced 2025-08-22 13:42:52 +02:00

Removed unnecessary dependency

This commit is contained in:
ryangreenup
2020-07-24 00:09:46 +10:00
parent c423c19094
commit ba981eecbe

View File

@@ -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; }
}