diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-12 20:36:45 +0500 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-12 20:36:45 +0500 |
commit | ae2949caa73d7aeb11e08636c93a0c25d5e3cbaf (patch) | |
tree | 04b33b92660db44b1ba73af8721b721407c9ed18 | |
parent | Makefile: serve on all interfaces (diff) | |
download | sorting-algorithms-ae2949caa73d7aeb11e08636c93a0c25d5e3cbaf.tar.gz sorting-algorithms-ae2949caa73d7aeb11e08636c93a0c25d5e3cbaf.zip |
Makefile: fix accidental failures
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ all: serve .PHONY: ruby ruby: - command -v rbenv && rbenv install --skip-existing + if command -v rbenv &> /dev/null; then rbenv install --skip-existing; fi .PHONY: deps deps: ruby |