From ad7413a0ef168c82520c47f7268e66b1aa49d40f Mon Sep 17 00:00:00 2001 From: yeti Date: Fri, 16 May 2025 14:22:27 +0100 Subject: [PATCH] fix: adapt build script to new folder convention --- build-workspace.sh | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/build-workspace.sh b/build-workspace.sh index 3a70282..6a67386 100755 --- a/build-workspace.sh +++ b/build-workspace.sh @@ -18,23 +18,14 @@ buildah run "$ctr" -- bash -c "\ useradd -ms /bin/fish -G secproc -u $DEV_UID -g $DEV_GID $DEV_USER " -# copy start script, neovim, tmux setup and ssh setup -buildah copy --chown $DEV_USER:$DEV_USER "$ctr" ./home/. $DEV_HOME +buildah add "$ctr" home.tar.gz $DEV_HOME # configure lazyvim # shellcheck disable=SC2016 buildah run --user "$DEV_USER" "$ctr" -- fish -c ' set -gx HOME '"$DEV_HOME"'; - mkdir -p $HOME/.ssh; ssh-keyscan -p 2222 10.88.0.1 >> $HOME/.ssh/known_hosts; ssh-keyscan -p 22 github.com >> $HOME/.ssh/known_hosts; - fisher install \ - jorgebucaran/fisher \ - pure-fish/pure \ - patrickf1/fzf.fish \ - jorgebucaran/autopair.fish \ - gazorby/fish-abbreviation-tips \ - jethrokuan/z; ' # lock the files