From b6adcf50c66ee77b04d25e307cc87827cfb94e21 Mon Sep 17 00:00:00 2001 From: Geoffrey Huntley Date: Tue, 6 Dec 2022 08:43:00 +1000 Subject: [PATCH 1/2] feat(securitytxt): add security.txt (#5827) --- src/browser/security.txt | 6 ++++++ src/node/routes/index.ts | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 src/browser/security.txt diff --git a/src/browser/security.txt b/src/browser/security.txt new file mode 100644 index 000000000..18996f284 --- /dev/null +++ b/src/browser/security.txt @@ -0,0 +1,6 @@ +Contact: mailto:security@coder.com +Acknowledgments: https://coder.com/security/thanks +Preferred-Languages: en-US +Canonical: https://coder.com/.well-known/security.txt +Policy: https://coder.com/security/policy +Hiring: https://coder.com/careers \ No newline at end of file diff --git a/src/node/routes/index.ts b/src/node/routes/index.ts index a2046b6a7..96928493b 100644 --- a/src/node/routes/index.ts +++ b/src/node/routes/index.ts @@ -81,6 +81,13 @@ export const register = async (app: App, args: DefaultedArgs): Promise Date: Mon, 5 Dec 2022 23:43:22 +0100 Subject: [PATCH 2/2] fix installing code-server on manjaro image (#5834) Co-authored-by: Joe Previte --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 026ee2f97..0829133f0 100755 --- a/install.sh +++ b/install.sh @@ -387,7 +387,7 @@ install_aur() { if [ ! "${DRY_RUN-}" ]; then cd "$CACHE_DIR/code-server-aur" fi - sh_c makepkg -si + sh_c makepkg -si --noconfirm echo_systemd_postinstall AUR }