diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2024-05-15 19:57:17 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2024-06-02 10:29:38 +0200 |
commit | f546aab8f6c0e83ec4ed02d6005d1c81f42fb8d0 (patch) | |
tree | 62f943db1617e31c6a566b1f7e9c41798ac58c72 /annual/2024/sync | |
parent | 4a642cbf9a70c36f489f1ea4e5d3e0330092704e (diff) |
Annual 2024. Copy 2023 files, drafts to agenda, minutes and reports
That includes Makefile and sync script.
Diffstat (limited to 'annual/2024/sync')
-rwxr-xr-x | annual/2024/sync | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/annual/2024/sync b/annual/2024/sync new file mode 100755 index 0000000..da7b734 --- /dev/null +++ b/annual/2024/sync @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +# Sync a set of sources with a Git repository target. Set target +# directory where the repository is found. Make sure that all pahts are +# absolute !!! + +mv ${0##*/} ${XDG_RUNTIME_DIR}/ + +TRG="$HOME/git/fripost/meetings/annual/2024" +SRC="$HOME/cloud-fripost/fripost/årsmöte" + +echo ${0##*/}: I: ${SRC} ${TRG} 1>&2 + +rsync -a --delete -P ${SRC}/ ${TRG}/ \ + | grep -iv "^sending" +git -C ${TRG} status --short --branch + +mv ${XDG_RUNTIME_DIR}/${0##*/} . |