15 lines
349 B
Makefile
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
|