From 422a962a856849f655caa9ed1f40f3b386a1454b Mon Sep 17 00:00:00 2001 From: Pallav Vasa Date: Fri, 16 May 2025 23:31:41 +0000 Subject: [PATCH] feat: change owner to devuser for .ssh/*, .config and .config/fish --- build-workspace.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-workspace.sh b/build-workspace.sh index 53cf163..09a6306 100755 --- a/build-workspace.sh +++ b/build-workspace.sh @@ -16,8 +16,9 @@ buildah run "$ctr" -- fish -c ' ssh-keyscan -p 2222 10.88.0.1 >> $HOME/.ssh/known_hosts; ssh-keyscan -p 22 github.com >> $HOME/.ssh/known_hosts; chown -R '"$DEV_USER"':'"$DEV_USER"' $HOME/.local $HOME/.config/fish/completions \ - $HOME/.config/fish/functions $HOME/.config/fish/fish_variables; - chown '"$DEV_USER"':'"$DEV_USER"' $HOME/.config/tmux; + $HOME/.config/fish/functions $HOME/.config/fish/fish_variables $HOME/.ssh; + chown '"$DEV_USER"':'"$DEV_USER"' $HOME/.config $HOME/.config/fish \ + $HOME/.config/tmux; ' buildah config \