Skip to content

Commit aaabf93

Browse files
author
Johnson
committed
modify Hub directory
1 parent 22f8390 commit aaabf93

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

hub/Makefile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
SUBSCRIBERS_DIR = subscribers
2+
CACHED_DATA_DIR = cached_data
3+
4+
all:
5+
# set writable
6+
test -d $(SUBSCRIBERS_DIR) || mkdir -p $(SUBSCRIBERS_DIR) && chmod 777 $(SUBSCRIBERS_DIR)
7+
test -d $(CACHED_DATA_DIR) || mkdir -p $(CACHED_DATA_DIR) && chmod 777 $(CACHED_DATA_DIR)
8+
9+
clean:
10+
rm -f ./cached_data/* ./subscribers/*

0 commit comments

Comments
 (0)