10 lines
242 B
Bash
Executable file
10 lines
242 B
Bash
Executable file
#! /usr/bin/sh
|
|
|
|
REPO_DIR="$(systemd-path user-state-private)"/git-sync
|
|
if [ -d "${REPO_DIR}" ]
|
|
then
|
|
git -C "${REPO_DIR}" pull
|
|
else
|
|
cd "$(systemd-path user-state-private)" || exit
|
|
git clone https://github.com/simonthum/git-sync
|
|
fi
|