From 2aa4ec73b6ccb7f4b6c42be6acf035ed7ec33822 Mon Sep 17 00:00:00 2001 From: Muhammad Zahalqa Date: Sun, 7 Jun 2020 18:32:55 +0300 Subject: [PATCH] Use python3 to invoke python 3.x --- 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 8dbebe9..b9caec0 100755 --- a/lnx-install.sh +++ b/lnx-install.sh @@ -30,7 +30,7 @@ echo Patching... python2 ./unlocker.py echo Getting VMware Tools... -python gettools.py +python3 gettools.py cp ./tools/darwin*.* /usr/lib/vmware/isoimages/ echo Finished! diff --git a/lnx-update-tools.sh b/lnx-update-tools.sh index 27b3f0d..40a7435 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... -python gettools.py +python3 gettools.py cp ./tools/darwin*.* /usr/lib/vmware/isoimages/ echo Finished!