Skip to content

Commit

Permalink
Fix configs.__init__ invalid node data path
Browse files Browse the repository at this point in the history
  • Loading branch information
badrogger committed Oct 17, 2019
1 parent d3c90d1 commit 6800ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
SKALE_DIR = os.path.join(HOME_DIR, '.skale')

PROJECT_PATH = os.path.join(SKALE_DIR, '.skale-node')
NODE_DATA_PATH = os.path.join(SKALE_DIR, 'NODE_DATA_PATH')
NODE_DATA_PATH = os.path.join(SKALE_DIR, 'node_data')
CONFIG_FILEPATH = os.environ.get('CONFIG_FILEPATH') or \
os.path.join(SKALE_DIR, '.skale-cli.yaml')

Expand Down

0 comments on commit 6800ff0

Please sign in to comment.