Skip to content

Commit a25db84

Browse files
author
Bhavi Dhingra
committed
fix(custom-git-explorer): suppress error output for xdg-open
1 parent b9ffd8e commit a25db84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util/custom-git-explorer/__open_web_page

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function __open_web_page() {
1616
if command -v open >/dev/null 2>&1; then
1717
open "${url}"
1818
elif command -v xdg-open >/dev/null 2>&1; then
19-
xdg-open "${url}"
19+
xdg-open "${url}" &> /dev/null
2020
else
2121
__print_info "URL: ${url}"
2222
fi

0 commit comments

Comments
 (0)