From 4a92dce449138cf6d6d88021de5bee5ee8388cc6 Mon Sep 17 00:00:00 2001 From: Jason Thatcher Date: Tue, 4 Jul 2023 16:18:30 +1000 Subject: [PATCH 1/2] config.example.yml: Fix typo in pwgen command (#3965) `pwdgen` -> `pwgen`. --- config/config.example.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.example.yml b/config/config.example.yml index 2da6e55e..34070fe5 100644 --- a/config/config.example.yml +++ b/config/config.example.yml @@ -460,7 +460,7 @@ jobs: ## ## Note: This parameter is mandatory and should be a random string. ## Such random string can be generated on linux with the following -## command: `pwdgen 20 1` +## command: `pwgen 20 1` ## ## Accepted values: a string ## Default: From 507bed6313b49564e53b69a5c9b4d072d1e05e4b Mon Sep 17 00:00:00 2001 From: Orville Date: Wed, 5 Jul 2023 09:13:05 -0400 Subject: [PATCH 2/2] Workaround for https://github.com/iv-org/invidious/issues/3909 (#3967) --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 929b11e1..d4657792 100644 --- a/Makefile +++ b/Makefile @@ -86,6 +86,7 @@ clean: distclean: clean rm -rf libs + rm -rf ~/.cache/{crystal,shards} # -----------------------