Updated Makefile
Fixed escape issue with git subshell commands.
This commit is contained in:
parent
4a4c0ff1cf
commit
70a4974ffd
6
Makefile
6
Makefile
|
|
@ -132,9 +132,9 @@ install: build
|
|||
update:
|
||||
@echo "Updating module components..."
|
||||
git submodule foreach \
|
||||
'git pull origin $(git rev-parse --abbrev-ref HEAD)'
|
||||
cd tomlplusplus && git pull origin $(git rev-parse --abbrev-ref HEAD)
|
||||
cd libxcb-error && git pull origin $(git rev-parse --abbrev-ref HEAD)
|
||||
'git pull origin $$(git rev-parse --abbrev-ref HEAD)'
|
||||
cd tomlplusplus && git pull origin $$(git rev-parse --abbrev-ref HEAD)
|
||||
cd libxcb-error && git pull origin $$(git rev-parse --abbrev-ref HEAD)
|
||||
|
||||
test: build
|
||||
@echo "Be real, you don't want to do this, so we'll abort."
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user