We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25b7e6e commit 4b80496Copy full SHA for 4b80496
download-pre.sh
@@ -44,7 +44,9 @@ function download() {
44
curl -LO "$url"
45
mkdir -p ../product/$plat/universal
46
unzip -oq $fname -d ../product/$plat/universal
47
- tree -L 2 ../product/$plat/universal
+ if command -v tree >/dev/null 2>&1; then
48
+ tree -L 2 ../product/$plat/universal
49
+ fi
50
echo "===================================="
51
cd - >/dev/null
52
}
0 commit comments