Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ else
IS_SCW_HOST := n
ifeq ($(SERVE_ASSETS), n)
ifndef SERVE_IP
$(error "Not a Scaleway host and no server IP given")
$(error "Not a Scaleway host and no server IP given, export SERVE_IP")
endif
ifndef SERVE_PORT
$(error "Not a Scaleway host and no server port given")
$(error "Not a Scaleway host and no server port given, export SERVE_PORT")
endif
endif
endif
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup_credentials.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [ -z "$SSH_KEY_FILE" ]; then
fi
done
if [ -z "$SSH_KEY_FILE" ]; then
logerr "Could not find any ssh identity to use"
logerr "Could not find any ssh identity to use, please export SSH_KEY_FILE variable"
exit 1
fi
fi
Expand Down