diff options
Diffstat (limited to 'util/linux_install.sh')
-rwxr-xr-x | util/linux_install.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/util/linux_install.sh b/util/linux_install.sh index 4731ec015..d21cd3c1c 100755 --- a/util/linux_install.sh +++ b/util/linux_install.sh | |||
@@ -8,6 +8,8 @@ SLACKWARE_WARNING="You will need the following packages from slackbuilds.org:\n\ | |||
8 | 8 | ||
9 | SOLUS_INFO="Your tools are now installed. To start using them, open new terminal or source these scripts:\n\t/usr/share/defaults/etc/profile.d/50-arm-toolchain-path.sh\n\t/usr/share/defaults/etc/profile.d/50-avr-toolchain-path.sh" | 9 | SOLUS_INFO="Your tools are now installed. To start using them, open new terminal or source these scripts:\n\t/usr/share/defaults/etc/profile.d/50-arm-toolchain-path.sh\n\t/usr/share/defaults/etc/profile.d/50-avr-toolchain-path.sh" |
10 | 10 | ||
11 | util_dir=$(dirname "$0") | ||
12 | |||
11 | if grep ID /etc/os-release | grep -qE "fedora"; then | 13 | if grep ID /etc/os-release | grep -qE "fedora"; then |
12 | sudo dnf install \ | 14 | sudo dnf install \ |
13 | arm-none-eabi-binutils-cs \ | 15 | arm-none-eabi-binutils-cs \ |
@@ -183,3 +185,6 @@ else | |||
183 | echo | 185 | echo |
184 | echo "https://docs.qmk.fm/#/contributing" | 186 | echo "https://docs.qmk.fm/#/contributing" |
185 | fi | 187 | fi |
188 | |||
189 | # Global install tasks | ||
190 | pip3 install -r ${util_dir}/../requirements.txt | ||