diff --git a/.gitattributes b/.gitattributes index 4e04e5f..ac7aaba 100644 --- a/.gitattributes +++ b/.gitattributes @@ -5,5 +5,9 @@ # Declare files that will always have CRLF line endings on checkout. *.cmd text eol=crlf -# Declare files that will always have CRLF line endings on checkout. -*.sh text eol=lf \ No newline at end of file +# Declare files that will always have LF line endings on checkout. +*.sh text eol=lf +*.py text eol=lf + +# Declare files that are binary on checkout. +*.exe binary \ No newline at end of file diff --git a/dumpsmc.exe b/dumpsmc.exe index 07ed1eb..c1abcc1 100755 Binary files a/dumpsmc.exe and b/dumpsmc.exe differ diff --git a/gettools.exe b/gettools.exe index a2981dc..067f8ac 100755 Binary files a/gettools.exe and b/gettools.exe differ diff --git a/lnx-install.sh b/lnx-install.sh index 8d4d22e..32a1ea0 100755 --- a/lnx-install.sh +++ b/lnx-install.sh @@ -31,7 +31,7 @@ python2 ./unlocker.py echo Getting VMware Tools... python2 gettools.py -cp ./tools/darwin.* /usr/lib/vmware/isoimages/ +cp ./tools/darwin*.* /usr/lib/vmware/isoimages/ echo Finished! diff --git a/lnx-uninstall.sh b/lnx-uninstall.sh index 30beea4..44dc892 100755 --- a/lnx-uninstall.sh +++ b/lnx-uninstall.sh @@ -27,6 +27,6 @@ fi echo Removing backup files... rm -rf ./backup rm -rf ./tools -rm -f /usr/lib/vmware/isoimages/darwin.* +rm -f /usr/lib/vmware/isoimages/darwin*.* echo Finished! diff --git a/lnx-update-tools.sh b/lnx-update-tools.sh index 6429978..b167a7c 100755 --- a/lnx-update-tools.sh +++ b/lnx-update-tools.sh @@ -16,7 +16,7 @@ fi echo Getting VMware Tools... python2 gettools.py -cp ./tools/darwin.* /usr/lib/vmware/isoimages/ +cp ./tools/darwin*.* /usr/lib/vmware/isoimages/ echo Finished! diff --git a/unlocker.exe b/unlocker.exe index eaddf8e..1e4ca77 100755 Binary files a/unlocker.exe and b/unlocker.exe differ diff --git a/win-install.cmd b/win-install.cmd index 1c33630..49a6e93 100644 --- a/win-install.cmd +++ b/win-install.cmd @@ -38,7 +38,7 @@ unlocker.exe echo Getting VMware Tools... gettools.exe -xcopy /F /Y .\tools\darwin.* "%InstallPath%" +xcopy /F /Y .\tools\darwin*.* "%InstallPath%" echo Starting VMware services... net start VMUSBArbService > NUL 2>&1 diff --git a/win-test-install.cmd b/win-test-install.cmd index 209aa29..25ee595 100644 --- a/win-test-install.cmd +++ b/win-test-install.cmd @@ -38,7 +38,7 @@ python unlocker.py echo Getting VMware Tools... python gettools.py -xcopy /F /Y .\tools\darwin.* "%InstallPath%" +xcopy /F /Y .\tools\darwin*.* "%InstallPath%" echo Starting VMware services... net start VMUSBArbService > NUL 2>&1 diff --git a/win-uninstall.cmd b/win-uninstall.cmd index 5f5e4c6..7617e48 100644 --- a/win-uninstall.cmd +++ b/win-uninstall.cmd @@ -31,7 +31,7 @@ taskkill /F /IM vmware-tray.exe > NUL 2>&1 echo Restoring files... xcopy /F /Y .\backup\x64\*.* "%InstallPath%x64\" xcopy /F /Y .\backup\*.* "%InstallPath%" -del /f "%InstallPath%"darwin.* +del /f "%InstallPath%"darwin*.* echo Removing backup files... rd /s /q .\backup > NUL 2>&1 diff --git a/win-update-tools.cmd b/win-update-tools.cmd index ae2a9db..f050890 100644 --- a/win-update-tools.cmd +++ b/win-update-tools.cmd @@ -19,7 +19,7 @@ echo VMware is installed at: %InstallPath% echo Getting VMware Tools... gettools.exe -xcopy /F /Y .\tools\darwin.* "%InstallPath%" +xcopy /F /Y .\tools\darwin*.* "%InstallPath%" popd