Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix repository name #834

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ syntax and access rights and then dispatches them to the relevant objects.

The project maintains the following source code repositories

* https://github.com/eclipse/wakaama
* https://github.com/eclipse-wakaama/wakaama

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

Expand Down
2 changes: 1 addition & 1 deletion NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ A copy of the EDL is available at http://www.eclipse.org/org/documents/edl-v10.p

The project maintains the following source code repositories:

* https://github.com/eclipse/wakaama
* https://github.com/eclipse-wakaama/wakaama

## Third-party Content

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Wakaama

[![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)
[![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)

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

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

```
git clone https://github.com/eclipse/wakaama.git
git clone https://github.com/eclipse-wakaama/wakaama.git
```

### Working on Wakaama

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

```
git clone --recurse-submodules https://github.com/eclipse/wakaama.git
git clone --recurse-submodules https://github.com/eclipse-wakaama/wakaama.git
```

## Compiling
Expand Down
2 changes: 1 addition & 1 deletion examples/shared/platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ int lwm2m_seed(void) {
* Return a seed for random number generation, the seed must be a
* different number at every boot and unpredictable, time(NULL) may not be
* a reliable source as a seed.
* See: https://github.com/eclipse/wakaama/pull/711
* See: https://github.com/eclipse-wakaama/wakaama/pull/711
*/
return time(NULL);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/data_senml_json_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ static void senml_json_test_23(void) {
strlen(buffer));
lwm2m_data_free(1, dataP);

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