devbox/Makefile
2026-03-17 12:15:07 -07:00

15 lines
349 B
Makefile

.PHONY: check-email fish-install questing noble
questing: check-email
fish ./build-image.fish --email $(EMAIL)
noble: check-email
fish ./build-image.fish -t devbox:noble -b ubuntu:24.04 --email $(EMAIL)
fish-install:
cp ./devbox.fish ~/.config/fish/functions/devbox.fish
check-email:
ifndef EMAIL
$(error Please set the EMAIL env var)
endif