]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Use unzip instead of 7zip
authorFred Sundvik <fsundvik@gmail.com>
Sun, 28 May 2017 17:43:16 +0000 (20:43 +0300)
committerFred Sundvik <fsundvik@gmail.com>
Sun, 28 May 2017 18:30:55 +0000 (21:30 +0300)
util/wsl_install.sh

index b1e47d637b75a7a408c941b5bff70064ffbaab8c..645ddce71e8d5825e9578da0a421a6bdb920fdf9 100644 (file)
@@ -10,15 +10,15 @@ function install_utils {
 
     echo "Installing dfu-programmer"
     wget 'http://downloads.sourceforge.net/project/dfu-programmer/dfu-programmer/0.7.2/dfu-programmer-win-0.7.2.zip'
-    7z x -odfu-programmer dfu-programmer-win-0.7.2.zip
+    unzip -d dfu-programmer dfu-programmer-win-0.7.2.zip
 
     echo "Installing dfu-util"
     wget 'http://dfu-util.sourceforge.net/releases/dfu-util-0.9-win64.zip'
-    7z x dfu-util-0.9-win64.zip
+    unzip dfu-util-0.9-win64.zip
 
     echo "Installing teensy_loader_cli"
     wget 'https://www.pjrc.com/teensy/teensy_loader_cli_windows.zip'
-    7z x teensy_loader_cli_windows.zip
+    unzip teensy_loader_cli_windows.zip
 
     echo "Installing Atmel Flip"
     wget 'http://www.atmel.com/images/Flip%20Installer%20-%203.4.7.112.exe'
@@ -63,9 +63,9 @@ while true; do
     esac
 done
 
-echo "Installing dependencies needed for the installation (p7zip-full, wget)"
+echo "Installing dependencies needed for the installation (unzip, wget)"
 echo "This will ask for the sudo password"
-sudo apt-get install p7zip-full wget
+sudo apt-get install unzip wget
 
 
 if [ ! -d "$download_dir" ]; then