We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba3db8b commit 6542817Copy full SHA for 6542817
1 file changed
usr/bin/apt-key-install
@@ -34,7 +34,7 @@ sudo $0 $source_file $target_file" >&2
34
exit 4
35
fi
36
37
-if ! sq cert lint --cert-file "$source_file"; then
+if ! sq cert lint --cert-file "$source_file" &>/dev/null; then
38
exit 5
39
40
@@ -50,7 +50,7 @@ if ! test -r "$target_file" ; then
50
exit 6
51
52
53
-if ! sq cert lint --cert-file "$target_file"; then
+if ! sq cert lint --cert-file "$target_file" &>/dev/null; then
54
exit 7
55
56
0 commit comments