From 6e7a85683160a9580f98d94d630c4724cffb099b Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 23 Oct 2022 00:08:44 +0200 Subject: update URLs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e4e0464..8fa0051 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Shows your `top`, Docker container status, systemd units & timers, allows you to reboot the server, etc. For example, see an instance running on my server at -https://status.egort.name/. +https://egort.name/status/. Installation ------------ -- cgit v1.2.3 From 578defeef04b25e089a64f5c2b61050cf91b984b Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 7 Dec 2022 15:24:09 +0100 Subject: fix preludes in bash scripts --- test/test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test.sh b/test/test.sh index 3b22039..aaf80fd 100755 --- a/test/test.sh +++ b/test/test.sh @@ -6,6 +6,7 @@ # Distributed under the MIT License. set -o errexit -o nounset -o pipefail +shopt -s inherit_errexit lastpipe script_dir="$( dirname -- "${BASH_SOURCE[0]}" )" script_dir="$( cd -- "$script_dir" && pwd )" -- cgit v1.2.3 From 69cba0ae9cbe23b992f52f544c36e1f03ecb157a Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 7 Dec 2022 15:27:00 +0100 Subject: workflows/ci: fix Python 3.6 tests --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b72f37a..71227f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,9 @@ jobs: strategy: matrix: python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] - runs-on: ubuntu-latest + # Unpin when this is fixed: + # https://github.com/actions/setup-python/issues/544 + runs-on: ubuntu-20.04 name: 'Python ${{ matrix.python-version }}' steps: - name: Checkout -- cgit v1.2.3