From 3c990b051c8c0ec54c5395e88ce282c73f296d72 Mon Sep 17 00:00:00 2001 From: Dave Parsons Date: Wed, 10 Oct 2018 11:41:15 +0100 Subject: [PATCH] Allow Python 2 and 3 to run Python files --- lnx-install.sh | 2 +- lnx-update-tools.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lnx-install.sh b/lnx-install.sh index f0b9cf3..8dbebe9 100755 --- a/lnx-install.sh +++ b/lnx-install.sh @@ -30,7 +30,7 @@ echo Patching... python2 ./unlocker.py echo Getting VMware Tools... -python2 gettools.py +python gettools.py cp ./tools/darwin*.* /usr/lib/vmware/isoimages/ echo Finished! diff --git a/lnx-update-tools.sh b/lnx-update-tools.sh index 3cbd8b5..27b3f0d 100755 --- a/lnx-update-tools.sh +++ b/lnx-update-tools.sh @@ -15,7 +15,7 @@ if [[ $EUID -ne 0 ]]; then fi echo Getting VMware Tools... -python2 gettools.py +python gettools.py cp ./tools/darwin*.* /usr/lib/vmware/isoimages/ echo Finished!