Skip to content

Commit

Permalink
MNT #213 relocate & remove clutter from home directory
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Feb 26, 2024
1 parent 8baefee commit 39b7ba2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bluesky/instrument/framework/initialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
def get_md_path():
path = iconfig.get("RUNENGINE_MD_PATH")
if path is None:
path = pathlib.Path.home() / "Bluesky_RunEngine_md"
path = pathlib.Path.home() / ".config" / "Bluesky_RunEngine_md"
else:
path = pathlib.Path(path)
logger.info("RunEngine metadata saved in directory: %s", str(path))
Expand Down
2 changes: 1 addition & 1 deletion bluesky/instrument/iconfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ WRITE_SPEC_DATA_FILES: true

# Directory to "autosave" the RE.md dictionary (uses PersistentDict)
# Uncomment and modify to change from the default.
# RUNENGINE_MD_PATH: /home/USERNAME/Bluesky_RunEngine_md
# RUNENGINE_MD_PATH: /home/USERNAME/.config/Bluesky_RunEngine_md

# override default control layer for ophyd
# if undefined, defaults to PyEpics
Expand Down

0 comments on commit 39b7ba2

Please sign in to comment.