Skip to content

Commit

Permalink
src/winusb: check_runtime_dependencies: silence command output
Browse files Browse the repository at this point in the history
Signed-off-by: 林博仁 <[email protected]>
  • Loading branch information
brlin-tw committed Jun 3, 2017
1 parent 46799eb commit 839f9a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/winusb
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ check_runtime_dependencies(){
find\
blkid
do
if ! command -v "${required_command}"; then
if ! command -v "${required_command}" >/dev/null; then
echo_with_color red "${FUNCNAME[0]}: Error: ${APPLICATION_NAME} requires ${required_command} command in the executable search path, but it is not found."
result=failed
fi
Expand Down

0 comments on commit 839f9a1

Please sign in to comment.