diff options
author | Ryan <fauxpark@gmail.com> | 2020-11-27 01:37:54 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-26 14:37:54 +0000 |
commit | c21d5a09735e84412ee5b3efb4c3f5d3fc734393 (patch) | |
tree | c2b8405f45fb6f00b063561056fca4c5aad28bf8 /util/msys2_install.sh | |
parent | 3afe0ea9b9f67ae33f54c1393b15d988764241a2 (diff) |
Refactor qmk_install.sh (#10681)
Diffstat (limited to 'util/msys2_install.sh')
-rwxr-xr-x | util/msys2_install.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/util/msys2_install.sh b/util/msys2_install.sh deleted file mode 100755 index 5abe4a597b..0000000000 --- a/util/msys2_install.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -util_dir=$(dirname "$0") - -echo "Installing dependencies needed for the installation" -pacman --needed --noconfirm --disable-download-timeout -Sy \ - base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-clang git unzip \ - mingw-w64-x86_64-python-pip \ - mingw-w64-x86_64-avr-binutils mingw-w64-x86_64-avr-gcc mingw-w64-x86_64-avr-libc \ - mingw-w64-x86_64-arm-none-eabi-binutils mingw-w64-x86_64-arm-none-eabi-gcc mingw-w64-x86_64-arm-none-eabi-newlib \ - mingw-w64-x86_64-avrdude mingw-w64-x86_64-bootloadhid mingw-w64-x86_64-dfu-programmer mingw-w64-x86_64-dfu-util mingw-w64-x86_64-teensy-loader-cli - -echo "Installing drivers" -tmpdir=$(mktemp -d) -cp "${util_dir}/drivers.txt" $tmpdir -pushd $tmpdir > /dev/null -wget "https://github.com/qmk/qmk_driver_installer/releases/download/v1.01/qmk_driver_installer.exe" -cmd.exe //c "qmk_driver_installer.exe --all --force drivers.txt" -popd > /dev/null -rm -r $tmpdir - -pip3 install -r "${util_dir}/../requirements.txt" |