diff options
author | Tom Smeding <tom@tomsmeding.com> | 2025-09-02 22:18:03 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2025-09-02 22:18:03 +0200 |
commit | 36c31f2e1d912dd5e4d84a1d30f5197d5fc549fd (patch) | |
tree | 4f62146f6023423e417c0f63ba4ad73bf2bcc178 | |
parent | 64f45a4f26ba67cefb54d614c822451b38d10e10 (diff) |
-rwxr-xr-x | modules/vacancies/getters/aarhus.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/vacancies/getters/aarhus.sh b/modules/vacancies/getters/aarhus.sh index 882d3a3..8acbe6f 100755 --- a/modules/vacancies/getters/aarhus.sh +++ b/modules/vacancies/getters/aarhus.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash set -euo pipefail -curl -sL 'https://international.au.dk/about/profile/vacant-positions' \ +curl -sL 'https://cs.au.dk/about-us/vacancies/' \ | grep 'DYCON\.Em[^ ]*vacancies' \ | head -1 \ | sed 's/^[^[]*//; s/; *$//' \ - | jq -r '.[] | (.title + " [" + .start_date + "]")' + | jq -r '.[] | (.title + " [https://cs.au.dk" + .link + "]")' |