diff options
author | mail_redacted_for_web | 2022-03-23 17:42:39 +0100 |
---|---|---|
committer | mail_redacted_for_web | 2022-03-23 17:42:39 +0100 |
commit | 27b17fe3c96f93bea9248df66a13a3e282a82893 (patch) | |
tree | f18e68f8597633c90a2c6eeda9ddf33e9465007a | |
parent | 2ebd4f1d0db6d9884a66be495edcbe67fe0d80d3 (diff) | |
download | dotfiles-27b17fe3c96f93bea9248df66a13a3e282a82893.tar.bz2 |
exclude .local files from distributed tarball
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ all: complete complete: checkenv tempdirs tarball removedirs distrib removetar tarball: - rsync -avu bin .bash .bash_profile .bashrc .flake8 .gitconfig .gnupg .perlcriticrc .profile .pylintrc .tmux.conf .tmux.conf.local tmux-gpakosz tmux-yank .vimrc --exclude=.git --exclude=.gitattributes --exclude=.github --exclude=.gitignore --exclude='LICENSE*' --exclude='README*' distribute/tar/ + rsync -avu bin .bash .bash_profile .bashrc .flake8 .gitconfig .gnupg .perlcriticrc .profile .pylintrc .tmux.conf .tmux.conf.local tmux-gpakosz tmux-yank .vimrc --exclude=.git --exclude=.gitattributes --exclude=.github --exclude=.gitignore --exclude='LICENSE*' --exclude='README*' --exclude='*.local' distribute/tar/ tar -C distribute/tar -cvJf dotfiles.tar.xz . rm -rf distribute/tar |