commit | 1c7f0c9761ede2d91a12b2d811e0588807501a2c | [log] [tgz] |
---|---|---|
author | termie <github@anarkystic.com> | Wed Sep 28 17:09:00 2011 -0500 |
committer | termie <github@anarkystic.com> | Wed Sep 28 17:09:00 2011 -0500 |
tree | cffa4bf81ac9bb8b34aa19992ac517ed57ded8ac | |
parent | d5e1f7ba09a389db52bffe5159cc324dfae53809 [diff] [blame] |
follow symlinks when copying env
diff --git a/build_lxc.sh b/build_lxc.sh index 74b63c3..7598a90 100755 --- a/build_lxc.sh +++ b/build_lxc.sh
@@ -145,7 +145,7 @@ # Gracefully cp only if source file/dir exists function cp_it { if [ -e $1 ] || [ -d $1 ]; then - cp -pr $1 $2 + cp -pRL $1 $2 fi }