devbox/Makefile

16 lines
349 B
Makefile
Raw Normal View History

2026-03-17 11:47:59 -07:00
.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