You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apparently the shell I'm using (fish) wildcard operators do not include hidden files or folders. Ergo the wildcard used for cp is ignoring the hidden folders at root level. Nested hidden folders are included as they get resolved by the -R argument by cp.
To reproduce
Create a folder called .testand add a file to it
Run devenv container copy shell
Run docker run -it shell and ls -la
.test folder is not in the directory
Version
devenv 1.0.8 (x86_64-linux)
The text was updated successfully, but these errors were encountered:
Describe the bug
We have a folder prefixed with a dot in out repo. This folder is not copied to the image when creating a container. See example bellow
After investigating, I think the issue is with how
mkHome
works.devenv/src/modules/containers.nix
Line 45 in 1d848fc
Apparently the shell I'm using (fish) wildcard operators do not include hidden files or folders. Ergo the wildcard used for
cp
is ignoring the hidden folders at root level. Nested hidden folders are included as they get resolved by the-R
argument bycp
.To reproduce
.test
and add a file to itdevenv container copy shell
docker run -it shell
andls -la
.test
folder is not in the directoryVersion
devenv 1.0.8 (x86_64-linux)
The text was updated successfully, but these errors were encountered: