Skip to content

Commit 4935d50

Browse files
committed
Prevent overflow when uberjarring
1 parent 21a0a1e commit 4935d50

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ JAR_NAME="holi.jar"
44
CALENDAR_SOURCE_DIR="resources/calendars-source"
55
CALENDAR_OUTPUT_DIR="resources/calendars-generated"
66
BUILD_ROOT="target"
7-
DEFAULT_BRACKET=80
7+
# WARNING! Do not increase this bracket beyond 75! This keeps the size of `WEEKEND*.datelist` < 65k to allow slurping when uberjarring
8+
DEFAULT_BRACKET=75
89
CLJ_TEST_LIB_HOME="test-lib/clj"
910
CLJ_TEST_LIB_TARGET="${CLJ_TEST_LIB_HOME}/target"
1011
CLJS_TEST_LIB_HOME="test-lib/cljs"

0 commit comments

Comments
 (0)