@@ -103,9 +103,9 @@ ifndef::backend-manpage[]
103103
104104This will install *bash_unit* in your current working directory:
105105
106-     curl -s https://raw.githubusercontent.com/pgrange /bash_unit/master/install.sh | bash
106+     curl -s https://raw.githubusercontent.com/bash-unit /bash_unit/master/install.sh | bash
107107
108- You can also download it from the https://github.com/pgrange /bash_unit/releases[release page].
108+ You can also download it from the https://github.com/bash-unit /bash_unit/releases[release page].
109109
110110endif::[]
111111
@@ -128,7 +128,7 @@ jobs:
128128    - uses: actions/checkout@v4
129129    - name: Unit testing with bash_unit
130130      run: |
131-         curl -s https://raw.githubusercontent.com/pgrange /bash_unit/master/install.sh | bash
131+         curl -s https://raw.githubusercontent.com/bash-unit /bash_unit/master/install.sh | bash
132132        FORCE_COLOR=true ./bash_unit tests/test_*
133133```
134134
@@ -144,7 +144,7 @@ test:
144144  script:
145145    - apt-get update
146146    - apt-get install --no-install-recommends -y curl ca-certificates
147-     - curl -s https://raw.githubusercontent.com/pgrange /bash_unit/master/install.sh | bash
147+     - curl -s https://raw.githubusercontent.com/bash-unit /bash_unit/master/install.sh | bash
148148    - FORCE_COLOR=true ./bash_unit tests/test_*
149149```
150150
@@ -159,7 +159,7 @@ Add the following to your pre-commit configuration. By default it will run scrip
159159[.pre-commit-config,yaml]
160160```
161161repos:
162-   - repo: https://github.com/pgrange /bash_unit
162+   - repo: https://github.com/bash-unit /bash_unit
163163    rev: v2.2.0
164164    hooks:
165165      - id: bash-unit
@@ -336,7 +336,7 @@ If you write code outside of any bash function, this code will be executed once
336336your file is a bash script and *bash_unit* sources it before running your tests. It is suggested to write a
337337*setup_suite* function and avoid any code outside a bash function. you must not use any bash_unit assertion
338338in setup_suite or use exit in setup_suite for teardown_suite to be run.
339- See https://github.com/pgrange /bash_unit/issues/43[issue 43] for more details.
339+ See https://github.com/bash-unit /bash_unit/issues/43[issue 43] for more details.
340340
341341If you want to keep an eye on a test not yet implemented, prefix the name of the function by *todo* instead of test.
342342Test to do are not executed and do not impact the global status of your test suite but are displayed in *bash_unit* output.
0 commit comments