From 75167ea37fe70a9fb7dea465beae36aa1e3a813e Mon Sep 17 00:00:00 2001 From: gubatron Date: Tue, 8 Jun 2021 15:19:44 -0600 Subject: [PATCH] [telluride] fixed boolean bug on configuration script --- telluride/configure_update.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/telluride/configure_update.sh b/telluride/configure_update.sh index e4409c47bf..856f0263d6 100755 --- a/telluride/configure_update.sh +++ b/telluride/configure_update.sh @@ -1,8 +1,9 @@ + #!/bin/bash ########################################################################## # Created by Angel Leon (@gubatron) -# Copyright (c) 2011-2020, FrostWire(R). All rights reserved. +# Copyright (c) 2011-2021, FrostWire(R). All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -51,8 +52,8 @@ iswindows() { fi } -if ! isdocker -a isubuntu -then +if [ isdocker == ${FALSE} ] && [ isubuntu == ${TRUE} ] +then sudo apt-get install python3 python3-pip pylint3 sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 10 PYINSTALLER_PACKAGE='PyInstaller'