From dad7766afccd1e8f7e66c1f25c49873a9e0e5574 Mon Sep 17 00:00:00 2001 From: Koichiro Iwao Date: Fri, 10 May 2024 17:36:32 +0900 Subject: [PATCH] Turn off cache explicitly when fetching NEWS from wiki --- scripts/update_news.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/update_news.sh b/scripts/update_news.sh index 2164d9210..44b65fcff 100755 --- a/scripts/update_news.sh +++ b/scripts/update_news.sh @@ -1,4 +1,5 @@ #!/bin/sh -curl https://raw.githubusercontent.com/wiki/neutrinolabs/xrdp/NEWS-v0.10.md > \ +curl -s -H 'Cache-Control: no-cache' \ + https://raw.githubusercontent.com/wiki/neutrinolabs/xrdp/NEWS-v0.10.md > \ $(git rev-parse --show-superproject-working-tree --show-toplevel | head -1)/NEWS.md