Syntax function fix

This commit is contained in:
David Duque 2020-05-17 02:38:00 +01:00
parent b66ade73c8
commit 98b50ce333
No known key found for this signature in database
GPG Key ID: 2F327738A3C0AE3A
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
if [ -z "$TAG" ]; then
# Make s
OS=`lsb_release -d | sed 's/.*:\s*//'`
if [ "$OS" == "Debian GNU/Linux 10 (buster)" -o "$OS" == "Ubuntu 20.04 LTS"]; then
if [ "$OS" == "Debian GNU/Linux 10 (buster)" -o "$OS" == "Ubuntu 20.04 LTS" ]; then
# This machine is running Ubuntu 18.04.
TAG=v0.44.POWER.5
else