Skip to content

Commit

Permalink
Merge pull request #18 from jefft0/fix/make-asdf.install_plugins-remo…
Browse files Browse the repository at this point in the history
…ve-spaces

fix: In Makefile asdf.install_plugins, remove spaces in error code check
  • Loading branch information
jefft0 authored Mar 1, 2023
2 parents a137475 + a6459ea commit d322780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ asdf.install_plugins:
@echo "Installing asdf plugins..."
@set -e; \
for PLUGIN in $$(cut -d' ' -f1 .tool-versions | grep "^[^\#]"); do \
asdf plugin add $$PLUGIN || [ $$? == 2 ] || exit 1; \
asdf plugin add $$PLUGIN || [ $$?==2 ] || exit 1; \
done
.PHONY: asdf.install_plugins

Expand Down

0 comments on commit d322780

Please sign in to comment.