Skip to content
Open
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 stackinator/templates/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ mirror-setup: spack-setup{% if pre_install_hook %} pre-install{% endif %}

{% if cache %}
@echo "Pulling and trusting keys from configured buildcaches."
$(SANDBOX) $(SPACK) buildcache keys --install --trust
$(SANDBOX) $(SPACK) buildcache keys --install --trust -y
{% endif %}
@echo "Adding mirror gpg keys."
{% for key_path in gpg_keys %}
$(SANDBOX) $(SPACK) gpg trust {{ key_path }}
$(SANDBOX) $(SPACK) gpg trust -y {{ key_path }}
{% endfor %}
@echo "Current mirror list:"
$(SANDBOX) $(SPACK) mirror list
Expand Down