Skip to content

Commit 83ae061

Browse files
committed
Fix release rsync examples folder.
(that were copied on root instead of sub-folder)
1 parent 36c1089 commit 83ae061

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FILES="
77
favicon.svg tree-icon-light.svg tree-icon-dark.svg
88
README.md LICENSE
99
updateOID.sh check.sh
10-
examples/*
10+
examples
1111
"
1212
mtn automate tags 'it.lapo.asn1js{,.*}' | \
1313
awk '/^revision/ { print substr($2, 2, length($2) - 2)}' | \
@@ -30,6 +30,6 @@ chmod 644 examples/*
3030
type gsha256sum >/dev/null 2>/dev/null && SHA256=gsha256sum || SHA256=sha256sum
3131
pnpm build
3232
cp dist/index.html index-local.html
33-
$SHA256 -t $FILES | gpg --clearsign > sha256sums.asc
33+
$SHA256 -t $FILES examples/* | gpg --clearsign > sha256sums.asc
3434
7z a -tzip -mx=9 asn1js.zip $FILES sha256sums.asc
3535
rsync -Pvrtz asn1js.zip $FILES lapo.it:www/asn1js/

0 commit comments

Comments
 (0)