Skip to content

Commit

Permalink
Merge branch 'dev' into frontend-improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
AyushSehrawat committed Feb 3, 2024
2 parents 4583659 + 7817a57 commit 4885739
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/program/symlink.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ def validate(self):
if not host_path.is_dir():
logger.error(f"Host path is not a directory or does not exist: {host_path}")
return False
if not container_path.is_dir():
logger.error(f"Container path is not a directory or does not exist: {container_path}")
return False
# if not container_path.is_dir():
# logger.error(f"Container path is not a directory or does not exist: {container_path}")
# return False
if Path(self.settings.host_path / "__all__").exists() and Path(self.settings.host_path / "__all__").is_dir():
logger.debug("Detected Zurg host path. Using __all__ folder for host path.")
self.settings.host_path = self.settings.host_path / "__all__"
Expand Down

0 comments on commit 4885739

Please sign in to comment.