Skip to content

Commit 8f15759

Browse files
doc: Fix repository name
While https://github.com/eclipse/wakaama redirects to https://github.com/eclipse-wakaama/wakaama, the later is what should be used nowadays.
1 parent ec4458b commit 8f15759

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ syntax and access rights and then dispatches them to the relevant objects.
1414

1515
The project maintains the following source code repositories
1616

17-
* https://github.com/eclipse/wakaama
17+
* https://github.com/eclipse-wakaama/wakaama
1818

1919
This project uses GitHub issues to track ongoing development and issues.
2020

NOTICE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A copy of the EDL is available at http://www.eclipse.org/org/documents/edl-v10.p
2525

2626
The project maintains the following source code repositories:
2727

28-
* https://github.com/eclipse/wakaama
28+
* https://github.com/eclipse-wakaama/wakaama
2929

3030
## Third-party Content
3131

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Wakaama
22

3-
[![Build](https://github.com/eclipse/wakaama/actions/workflows/build_and_test.yaml/badge.svg)](https://github.com/eclipse/wakaama/actions/workflows/build_and_test.yaml)
3+
[![Build](https://github.com/eclipse-wakaama/wakaama/actions/workflows/build_and_test.yaml/badge.svg)](https://github.com/eclipse/wakaama/actions/workflows/build_and_test.yaml)
44

55
[![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/eclipse-wakaama/wakaama/badge)](https://scorecard.dev/viewer/?uri=github.com/eclipse-wakaama/wakaama)
66

@@ -33,15 +33,15 @@ This work is dual-licensed under the Eclipse Public License v2.0 and Eclipse Dis
3333
### Using Wakaama as library
3434

3535
```
36-
git clone https://github.com/eclipse/wakaama.git
36+
git clone https://github.com/eclipse-wakaama/wakaama.git
3737
```
3838

3939
### Working on Wakaama
4040

4141
When working on Wakaama itself, or intending to run the example client application, submodules must be checked out:
4242

4343
```
44-
git clone --recurse-submodules https://github.com/eclipse/wakaama.git
44+
git clone --recurse-submodules https://github.com/eclipse-wakaama/wakaama.git
4545
```
4646

4747
## Compiling

examples/shared/platform.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ int lwm2m_seed(void) {
7272
* Return a seed for random number generation, the seed must be a
7373
* different number at every boot and unpredictable, time(NULL) may not be
7474
* a reliable source as a seed.
75-
* See: https://github.com/eclipse/wakaama/pull/711
75+
* See: https://github.com/eclipse-wakaama/wakaama/pull/711
7676
*/
7777
return time(NULL);
7878
}

tests/data_senml_json_tests.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ static void senml_json_test_23(void) {
531531
strlen(buffer));
532532
lwm2m_data_free(1, dataP);
533533

534-
/* This test is added for https://github.com/eclipse/wakaama/issues/274 */
534+
/* This test is added for https://github.com/eclipse-wakaama/wakaama/issues/274 */
535535
const char *buffer2 = "[{\"bn\":\"/34/0/2\",\"vd\":\"MA==\"}]";
536536
senml_json_test_raw("/34/0/2", (uint8_t *)buffer2, strlen(buffer2), LWM2M_CONTENT_SENML_JSON, "23c");
537537
}

0 commit comments

Comments
 (0)