diff options
| author | crupest <crupest@outlook.com> | 2024-08-14 00:28:12 +0800 | 
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2024-08-14 11:39:15 +0800 | 
| commit | 0618233950a7482cad55b1d0e1fec320cb5d814a (patch) | |
| tree | 4a6f01b7f72c33da3e3f3c2a80c046d752a0ddc9 | |
| parent | 5e4fa0aa1b261d3c533ed247cfc97c07a4edefbe (diff) | |
| download | crupest-0618233950a7482cad55b1d0e1fec320cb5d814a.tar.gz crupest-0618233950a7482cad55b1d0e1fec320cb5d814a.tar.bz2 crupest-0618233950a7482cad55b1d0e1fec320cb5d814a.zip | |
fix(docker/debian-dev): copy bash profile into correct home dir.
| -rw-r--r-- | docker/crupest-debian-dev/bootstrap/func.bash | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docker/crupest-debian-dev/bootstrap/func.bash b/docker/crupest-debian-dev/bootstrap/func.bash index fb2ee77..d17fa1b 100644 --- a/docker/crupest-debian-dev/bootstrap/func.bash +++ b/docker/crupest-debian-dev/bootstrap/func.bash @@ -7,9 +7,9 @@ is_true() {  }  append-bash-profile() { -    cat "/bootstrap/bash-profile/$1" >> /root/.bash_profile +    cat "/bootstrap/bash-profile/$1" >> /home/$CRUPEST_DEBIAN_DEV_USER/.bash_profile  }  copy-home-dot-file() { -    cp "/bootstrap/home-dot/$1" "/root/.$1" +    cp "/bootstrap/home-dot/$1" "/home/$CRUPEST_DEBIAN_DEV_USER/.$1"  } | 
