LibreY- privacy respecting meta search engine |
git clone git://git.acid.vegas/LibreY.git |
Log | Files | Refs | Archive | README | LICENSE |
commit 5512e5da8040834c71b021b6c48c4a226a3e6d9d
parent 5e2cc8981665bd28d1bee0ef427c7c6917cd3c28 Author: Ahwx <ahwx@ahwx.org> Date: Thu, 7 Sep 2023 17:59:39 +0200 feat(auto_updater.sh): adding auto updater like LibreX used to have Diffstat:
|
1 file changed, 6 insertions(+), 0 deletions(-) |
diff --git a/auto_updater.sh b/auto_updater.sh @@ -0,0 +1,6 @@ +#!/bin/sh +while true; do + git stash + git pull + sleep 60 +done |