diff options
Diffstat (limited to 'docker/debian-dev/bootstrap/setup-dev-tools.bash')
-rwxr-xr-x | docker/debian-dev/bootstrap/setup-dev-tools.bash | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docker/debian-dev/bootstrap/setup-dev-tools.bash b/docker/debian-dev/bootstrap/setup-dev-tools.bash index 34bae8c..92f59c8 100755 --- a/docker/debian-dev/bootstrap/setup-dev-tools.bash +++ b/docker/debian-dev/bootstrap/setup-dev-tools.bash @@ -6,6 +6,9 @@ apt-get install -y build-essential git devscripts debhelper quilt \ cpio kmod bc python bison flex rsync libelf-dev libssl-dev libncurses-dev dwarves cat /bootstrap/bash-profile/dev.bash >> /root/.bash_profile - -cp /bootstrap/quiltrc-dpkg /root/.quiltrc-dpkg cat /bootstrap/bash-profile/dquilt.bash >> /root/.bash_profile + +for f in /bootstrap/home-dot/*; do + filename=$(basename "$f") + cp "$f" "/root/.$filename" +done |