Skip to content

Commit

Permalink
Missed an else statement for move
Browse files Browse the repository at this point in the history
  • Loading branch information
mosa11aei committed Jul 18, 2024
1 parent f3350f1 commit b8c3f3b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/fppm/cli/commands/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,10 @@ def apply_config_fillables(args, context):
shutil.move(
f"{actual_cookiecutter}/{file}", f"{packageFolder}.fillables/out"
)
else:
shutil.move(
f"{actual_cookiecutter}/{file}", f"{packageFolder}.fillables/out"
)

shutil.rmtree(actual_cookiecutter, ignore_errors=True)
shutil.rmtree(f"__TMP__", ignore_errors=True)
Expand Down

0 comments on commit b8c3f3b

Please sign in to comment.