mirror of
https://github.com/jimeh/build-emacs-for-macos.git
synced 2026-02-19 08:26:39 +00:00
10 lines
279 B
Makefile
10 lines
279 B
Makefile
.PHONY: new-version
|
|
new-version:
|
|
$(if $(shell which npx),,\
|
|
$(error No npx found in PATH, please install NodeJS))
|
|
$(if $(shell which standard-version),,\
|
|
$(error No standard-version found in PATH, install with: \
|
|
npm install -g standard-version))
|
|
|
|
npx standard-version
|