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
|
CURL = curl -s
|
||||||
|
|
||||||
# Checkers
|
# Checkers
|
||||||
ARCH = $(shell grep -c "archlinux" /proc/version)
|
ARCH = $(shell grep -c "archlinux" /proc/version 2> /dev/null)
|
||||||
WSL = $(shell grep -c "WSL2" /proc/version)
|
WSL = $(shell grep -c "WSL2" /proc/version 2> /dev/null)
|
||||||
TERMUX = $(shell type termux-info &> /dev/null)
|
TERMUX = $(shell type termux-info 2> /dev/null)
|
||||||
|
|
||||||
# Hide some verbose messages from Make
|
# Hide some verbose messages from Make
|
||||||
MAKEFLAGS += --no-print-directory
|
MAKEFLAGS += --no-print-directory
|
||||||
|
|
Loading…
Reference in a new issue