mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2025-11-05 01:12:42 +01:00
10 lines
222 B
Makefile
10 lines
222 B
Makefile
install: dotfiles
|
|
|
|
# Install dotfiles in users home directory
|
|
dotfiles:
|
|
@if [ -d dotfiles ]; then \
|
|
cp -r ./dotfiles/. $HOME \
|
|
rm -rf dotfiles \
|
|
else \
|
|
echo "Dotfiles already installed or folder is missing"; \
|
|
fi
|