Skip to content

Commit 4103c3e

Browse files
committed
fix repo name
1 parent 028b848 commit 4103c3e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,21 @@ For a platform or architecture that does not have a precompiled binary, you must
5454
1. [Install the Rust toolchain](https://www.rust-lang.org/tools/install).
5555
1. Run the following commands on the target system or VM:
5656
```sh
57-
cd c2pa-node
57+
cd c2pa-node-v2
5858
pnpm install
5959
pnpm build:rust
6060
```
6161
1. Copy the binary to a place that is accessible by your application (in this example, it is `/path/to/my/application/resources`):
6262
```sh
6363
cd /path/to/my/application
6464
mkdir resources
65-
cp /path/to/c2pa-node/generated/c2pa.node resources/c2pa.node
65+
cp /path/to/c2pa-node-v2/generated/c2pa.node resources/c2pa.node
6666
```
6767
1. Set the the `C2PA_LIBRARY_PATH` environment variable to the path to the `c2pa.node` module by entering these commands:
6868
```sh
6969
export C2PA_LIBRARY_PATH=resources/c2pa.node
70-
npm install c2pa-node
70+
npm install c2pa-node-v2
7171
npm start
7272
```
7373

74-
**Important:** `C2PA_LIBRARY_PATH` _must_ be set while both **installing** or **adding** `c2pa-node` to your app to avoid building the Rust code. It must _also_ be set while **running** your app so that it loads the bindings from the correct location.
74+
**Important:** `C2PA_LIBRARY_PATH` _must_ be set while both **installing** or **adding** `c2pa-node-v2` to your app to avoid building the Rust code. It must _also_ be set while **running** your app so that it loads the bindings from the correct location.

0 commit comments

Comments
 (0)