Skip to content

Commit 5aadec4

Browse files
makefile now prompts for arguments to pass to pman
1 parent cefd83b commit 5aadec4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
all: compile run
33

44
run:
5-
cd ../dist/ && electron .
5+
@read -p "Enter pman args: " args; \
6+
cd ../dist/ && electron . $$args;
67

78
compile:
89
haxe build.hxml && cd ../dist/ && ./pack preprocess

0 commit comments

Comments
 (0)