Skip to content

Commit

Permalink
Fix stdout + stderr redirection in hcachever.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
gahr committed Nov 27, 2017
1 parent 562e645 commit eb81bc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hcache/hcachever.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ md5prog () {
openssl=`which openssl`
if [ $? = 0 ];then
# Check that openssl supports the -r option (requires version 1.1.0)
echo test | openssl md5 -r 2&> /dev/null
echo test | openssl md5 -r > /dev/null 2>&1
if [ $? = 0 ]; then
echo "$openssl md5 -r"
return
Expand Down

0 comments on commit eb81bc1

Please sign in to comment.