We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Symlink to directory not found in zipped application.
Seems commit 790cde6 produces this issue, because as Python documentation about os.walk:
os.walk
... dirnames is a list of the names of the subdirectories in dirpath (including symlinks to directories, and excluding '.' and '..').
Thus, the mentioned commit has removed the process of including symlinks-to-directories into the zip.
folder_a/ ├─ folder_b/ │ ├─ file_b file_a symlink_to_folder_b
eb deploy
symlink_to_folder_b fully skipped (not found in debug log)
symlink_to_folder_b
... 2024-02-13 22:46:20,065 (INFO) eb : +adding: ./folder_a/ 2024-02-13 22:46:20,066 (INFO) eb : +adding: ./folder_a/file_a 2024-02-13 22:46:20,068 (INFO) eb : +adding: ./folder_a/folder_b/ 2024-02-13 22:46:20,068 (INFO) eb : +adding: ./folder_a/folder_b/file_b ...
Symlink to directory added to application zip.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Symlink to directory not found in zipped application.
Seems commit 790cde6 produces this issue, because as Python documentation about
os.walk
:Thus, the mentioned commit has removed the process of including symlinks-to-directories into the zip.
Steps to reproduce
eb deploy
Observed result
symlink_to_folder_b
fully skipped (not found in debug log)Expected result
Symlink to directory added to application zip.
Additional environment details (Ex: Windows, Mac, Amazon Linux etc)
The text was updated successfully, but these errors were encountered: