Browse Source

replace md5sum by openssl md5 which is more portable

pull/1/head
Jehan Monnier 11 years ago
parent
commit
193f651e00
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      test/testCampaignAll

+ 1
- 1
test/testCampaignAll View File

@ -10,7 +10,7 @@ if [ ! -d "patterns" ]; then
wget http://www.belledonne-communications.com/downloads/bcg729-patterns.zip
if [ -e bcg729-patterns.zip ]; then
# check file
if [[ `md5sum bcg729-patterns.zip | grep -c 75b4fb8b286485c375c9c326f8b9eb66` -ne 0 ]]; then
if [[ `openssl md5 bcg729-patterns.zip | grep -c 75b4fb8b286485c375c9c326f8b9eb66` -ne 0 ]]; then
# file ok, unzip it
unzip bcg729-patterns.zip
if [[ $? -ne 0 ]]; then


Loading…
Cancel
Save