ignore errors
This commit is contained in:
parent
a4c96860b2
commit
1cebac64fe
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -12,9 +12,9 @@ WGET = wget -q --show-progress
|
|||
CURL = curl -s
|
||||
|
||||
# Checkers
|
||||
ARCH = $(shell grep -c "archlinux" /proc/version)
|
||||
WSL = $(shell grep -c "WSL2" /proc/version)
|
||||
TERMUX = $(shell type termux-info &> /dev/null)
|
||||
ARCH = $(shell grep -c "archlinux" /proc/version 2> /dev/null)
|
||||
WSL = $(shell grep -c "WSL2" /proc/version 2> /dev/null)
|
||||
TERMUX = $(shell type termux-info 2> /dev/null)
|
||||
|
||||
# Hide some verbose messages from Make
|
||||
MAKEFLAGS += --no-print-directory
|
||||
|
|
Loading…
Reference in a new issue