dashixiong91 / fvm

🗼Flutter SDK versions Manager
MIT License
87 stars 9 forks source link

fix linux download the mac verison zip #1

Closed beilly closed 4 years ago

beilly commented 4 years ago

fvm install download the mac verison zip. fix darwin judge error.

this is test script:

#!/usr/bin/env bash

darwin=false
case "`uname`" in
  Darwin*) darwin=true
esac

echo "darwin: $darwin"

if [[ $darwin == true ]];then
  echo "true"    
else
  echo "flase"
fi

mac output: image ubuntu output: image

beilly commented 4 years ago

Wait a moment, I found that the decompression script also needs to be adapted.