Skip to content

Commit 477d550

Browse files
committed
add quotes to jarfile name to accomodate spaces in paths
1 parent a0fb432 commit 477d550

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Makefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
help:
32
@echo
43
@echo 'Usage: make {boot|help}'
@@ -21,7 +20,7 @@ build: clean
2120

2221
boot: build
2322
echo '#!/usr/bin/env bash' > boot
24-
echo 'java $$JVM_OPTS -jar $$0 "$$@"' >> boot
23+
echo 'java $$JVM_OPTS -jar "$$0" "$$@"' >> boot
2524
echo 'exit' >> boot
2625
cat target/boot*-standalone.jar >> boot
2726
chmod 0755 boot

0 commit comments

Comments
 (0)