setup.sh: Don't use &>
This commit is contained in:
parent
48749f9e1c
commit
d94ade8ccc
1 changed files with 1 additions and 1 deletions
2
setup.sh
2
setup.sh
|
@ -33,7 +33,7 @@ if have fossil; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
gpg_key="7395312F"
|
gpg_key="7395312F"
|
||||||
if $gpg --list-secret-keys $gpg_key &>/dev/null; then
|
if $gpg --list-secret-keys $gpg_key >/dev/null 2>&1; then
|
||||||
fossil set --global pgp-command \
|
fossil set --global pgp-command \
|
||||||
"$gpg -u $gpg_key --clearsign -o"
|
"$gpg -u $gpg_key --clearsign -o"
|
||||||
fossil set --global clearsign 1
|
fossil set --global clearsign 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue