Skip to content

Commit bd9d98d

Browse files
committed
doc: Align documented scripts with CI ones
1 parent 0b4640a commit bd9d98d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/release-process.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ Perform these checks before creating a release:
2424
2. Check installation with autotools:
2525
```shell
2626
dir=$(mktemp -d)
27-
./autogen.sh && ./configure --prefix=$dir && make clean && make install && ls -l $dir/include $dir/lib
27+
./autogen.sh && ./configure --prefix=$dir && make clean && make install && ls -RlAh $dir
2828
gcc -o ecdsa examples/ecdsa.c $(PKG_CONFIG_PATH=$dir/lib/pkgconfig pkg-config --cflags --libs libsecp256k1) -Wl,-rpath,"$dir/lib" && ./ecdsa
2929
```
3030
3. Check installation with CMake:
3131
```shell
3232
dir=$(mktemp -d)
3333
build=$(mktemp -d)
34-
cmake -B $build -DCMAKE_INSTALL_PREFIX=$dir && cmake --build $build --target install && ls -l $dir/include $dir/lib*
34+
cmake -B $build -DCMAKE_INSTALL_PREFIX=$dir && cmake --build $build --target install && ls -RlAh $dir
3535
gcc -o ecdsa examples/ecdsa.c -I $dir/include -L $dir/lib*/ -l secp256k1 -Wl,-rpath,"$dir/lib",-rpath,"$dir/lib64" && ./ecdsa
3636
```
3737

0 commit comments

Comments
 (0)