mirror of
https://github.com/trueChristian/witnesses.git
synced 2025-02-10 21:18:26 +00:00
14 lines
398 B
Bash
Executable File
14 lines
398 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#██████████████████████████████████████████████████████████████ DATE TODAY ███
|
|
# must set the time to Namibian :)
|
|
TODAY=$(TZ="Africa/Windhoek" date '+%A %d-%B, %Y')
|
|
|
|
echo "${TODAY}" > .active
|
|
|
|
git add .
|
|
git commit -am"active on ${TODAY}"
|
|
git push
|
|
|
|
exit 0
|