mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 16:53:09 +00:00
Explicitly invoke shell
in some cases the permission on the script might be incorrect (zip downloads?). Explicitly invoke the shell closes https://github.com/official-stockfish/Stockfish/pull/4803 No functional change
This commit is contained in:
parent
70ba9de85c
commit
22cdb6c1ea
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ ifeq ($(ARCH),)
|
|||
endif
|
||||
|
||||
ifeq ($(ARCH), native)
|
||||
override ARCH = $(shell ../scripts/get_native_properties.sh | cut -d " " -f 1)
|
||||
override ARCH = $(shell $(SHELL) ../scripts/get_native_properties.sh | cut -d " " -f 1)
|
||||
endif
|
||||
|
||||
# explicitly check for the list of supported architectures (as listed with make help),
|
||||
|
|
Loading…
Add table
Reference in a new issue