From 029d94771b602708b4a1cc69103c5088250c2781 Mon Sep 17 00:00:00 2001 From: Vikash Kothary Date: Sun, 27 Dec 2020 20:56:34 +0000 Subject: [PATCH] Add command to Makefile for quick access --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) mode change 100644 => 100755 Makefile diff --git a/Makefile b/Makefile old mode 100644 new mode 100755 index 475ea62..57809b4 --- a/Makefile +++ b/Makefile @@ -37,6 +37,13 @@ init: notebooks: @${PYTHON} -m jupyter ${JUPYTER_OPTION} +%: + @test -f scripts/${*}.sh + @${SHELL} scripts/${*}.sh + +.PHONY: release #: Tag and deploy to PyPI. +release: + @${SHELL} scripts/release.sh .PHONY: open open: @${OPEN} http://127.0.0.1:27701 \ No newline at end of file