8 lines
228 B
Bash
Executable File
8 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
git pull origin master;
|
|
|
|
rsync --exclude ".git/" --exclude ".git*" --exclude "install" --exclude "profiles" --exclude "py3status" --exclude "bin/" --exclude "terminal_profile.terminal" -avhE --no-perms . ~
|