Skip to content

Commit 6f9c0c2

Browse files
committed
fix(rootfs/builder/build.sh): fix /tmp/env copy statement
1 parent e88f938 commit 6f9c0c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rootfs/builder/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export STACK=cedar-14
102102
## copy the environment dir excluding the ephemeral ..data/ dir and other symlinks created by Kubernetes.
103103

104104
if [ "$(ls -A $secret_dir)" ]; then
105-
cp $secret_dir/* $env_root/
105+
cp -r $secret_dir/. $env_root/
106106
fi
107107

108108
## SSH key configuration

0 commit comments

Comments
 (0)