Skip to content

Commit

Permalink
Remove unused problematic code
Browse files Browse the repository at this point in the history
  • Loading branch information
psakievich committed Dec 19, 2023
1 parent f833a98 commit c491f63
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions manager/manager_cmds/create_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,8 @@ def create_env(parser, args):
copy_tree(project.repo_path, os.path.join(theDir, "repos"))
manifest.flush()

fpath = os.path.join(project.root, ".tmp")

os.makedirs(fpath, exist_ok=True)

storage = os.path.join(fpath, "created_env_path.txt")

with open(storage, "w") as f:
f.write(theDir)
with open(storage, "w") as f:
f.write(theDir)

return theDir

Expand Down

0 comments on commit c491f63

Please sign in to comment.