Skip to content

Commit 4132e36

Browse files
committed
2 parents aeb3b69 + 60bdc25 commit 4132e36

6 files changed

Lines changed: 19 additions & 3 deletions

File tree

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
please dear god (i got docker images working for this site!)
1+
---
2+
hideHome: true
3+
---
4+
please dear god (i got docker images working for this site! [and maybe local auto-updates now?])
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
hideHome: true
3+
---
4+
the best way to check if a repo is dead is to see how long non-bot PRs have been sitting idle
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
hideHome: true
3+
---
4+
nearly every time I've gone shopping for the past 6 months the flag is at half mast, and I can't help but think now "great, what the FUCK could it be this time"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
hideHome: true
3+
---
4+
desktop linux will never be taken seriously unless some organization develops an mdm solution instead of yet another desktop environment

src/routes/articles/notes-linux/+page.svx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ echo "Unattended-Upgrade::Automatic-Reboot-WithUsers \"true\";" > /etc/apt/apt.c
6565

6666
```bash
6767
curl -fsSL https://get.docker.com | sh
68-
apt install -y docker-compose
6968
docker run --detach --name watchtower --restart unless-stopped --volume /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower
7069
```
7170

watchChanges.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ EOF
1919
git config --unset-all http.https://github.com/.extraheader
2020
git config user.email "$GIT_EMAIL"
2121
git config user.name "$GIT_NAME"
22+
git config pull.rebase false
2223
fi
2324

2425
trap 'rm -f "$ASKPASS_SCRIPT"' EXIT
@@ -55,6 +56,7 @@ check_and_push_local_changes() {
5556
echo "No local changes for 5 minutes. Pushing changes..."
5657
git add -A
5758
git commit -m "Auto-commit"
59+
git_with_creds pull
5860
git_with_creds push
5961
break
6062
fi
@@ -87,4 +89,4 @@ if ! eval "$GIT_CREDS_PRESENT"; then
8789
else
8890
echo "Watching for changes in the directory..."
8991
fi
90-
watch_directory
92+
watch_directory

0 commit comments

Comments
 (0)