You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
864 B
Bash
22 lines
864 B
Bash
#!/usr/bin/env bash
|
|
DOTFILES_URI="${DOTFILES_URI}"
|
|
DOTFILES_USER="${DOTFILES_USER}"
|
|
|
|
if [ -n "$${DOTFILES_URI// }" ]; then
|
|
if [ -z "$DOTFILES_USER" ]; then
|
|
DOTFILES_USER="$USER"
|
|
fi
|
|
|
|
echo "✨ Applying dotfiles for user $DOTFILES_USER"
|
|
|
|
if [ "$DOTFILES_USER" = "$USER" ]; then
|
|
coder dotfiles "$DOTFILES_URI" -y 2>&1 | tee ~/.dotfiles.log
|
|
else
|
|
# The "eval echo ~$USER" part is used to dynamically get the home directory of the user, see https://superuser.com/a/484280
|
|
# sudo -u coder sh -c 'eval echo ~$USER' -> "/home/coder" ~/projects/coder-modules
|
|
# sudo sh -c 'eval echo ~$USER' -> "/root"
|
|
|
|
sudo -u "$DOTFILES_USER" sh -c "$(which coder) dotfiles \"$DOTFILES_URI\" -y 2>&1 | tee -a $(eval echo ~$USER)/.dotfiles.log"
|
|
fi
|
|
fi
|