Skip to content

Commit

Permalink
store config.yaml using absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
yerbol-akhmetov committed Oct 27, 2024
1 parent e1c6ddf commit 46f60e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def handle_exception(exc_type, exc_value, exc_traceback):


def copy_default_files():
fn = Path("config.yaml")
fn = Path(os.path.join(BASE_DIR, "config.yaml"))
if not fn.exists():
fn.write_text(
"# Write down config entries differing from config.default.yaml\n\nrun: {}"
Expand Down

0 comments on commit 46f60e3

Please sign in to comment.