Fixed typo that was preventing key creation.

This commit is contained in:
James Patrick 2019-12-12 21:45:59 -05:00
parent 686b50ac55
commit 35728131ee
1 changed files with 2 additions and 2 deletions

View File

@ -26,10 +26,10 @@ remove:
$(report) warn "NOTE: All prior keys still remain."
init_jpatrick_key:
ifeq ($(shell [ ! -e $(JPATRIC_KEY) ] $(return_val_truthy) ), true)
ifeq ($(shell [ ! -e $(JPATRICK_KEY) ] $(return_val_truthy) ), true)
$(report) info "Setting up key for jpatrick.io"
ssh-keygen -t ed25519 -C "`hostname`: `date`" -f $(JPATRICK_KEY) -N "" \
; report info "jpatrick.io key created"
; $(report) info "jpatrick.io key created"
else
$(report) warn "Key for jpatrick.io already created"
endif