Add resources dir to build.py

PR [#2690](https://github.com/influxdata/chronograf/pull/2690)
introduced a --resources-path flag, but forgot to update the build.py
to properly account for the distributions.
pull/10616/head
Michael Desa 2018-01-10 12:40:47 -05:00
parent 3b06ac800a
commit 0e1540b962
1 changed files with 3 additions and 1 deletions

View File

@ -24,6 +24,7 @@ DATA_DIR = "/var/lib/chronograf"
SCRIPT_DIR = "/usr/lib/chronograf/scripts"
LOGROTATE_DIR = "/etc/logrotate.d"
CANNED_DIR = "/usr/share/chronograf/canned"
RESOURCES_DIR = "/usr/share/chronograf/resources"
INIT_SCRIPT = "etc/scripts/init.sh"
SYSTEMD_SCRIPT = "etc/scripts/chronograf.service"
@ -115,7 +116,8 @@ def create_package_fs(build_root):
DATA_DIR[1:],
SCRIPT_DIR[1:],
LOGROTATE_DIR[1:],
CANNED_DIR[1:]
CANNED_DIR[1:],
RESOURCES_DIR[1:]
]
for d in dirs:
os.makedirs(os.path.join(build_root, d))