Skip to content

Commit

Permalink
[telluride] fixed boolean bug on configuration script
Browse files Browse the repository at this point in the history
  • Loading branch information
gubatron committed Jun 8, 2021
1 parent 358eb8a commit 75167ea
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions telluride/configure_update.sh
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit 75167ea

Please sign in to comment.