Skip to content

Commit

Permalink
Fix publish license path (#7927)
Browse files Browse the repository at this point in the history
  • Loading branch information
cart committed Mar 6, 2023
1 parent cdf4311 commit 66d9882
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ pushd crates
for crate in "${crates[@]}"
do
echo "Publishing ${crate}"
cp ../docs/LICENSE-MIT "$crate"
cp ../docs/LICENSE-APACHE "$crate"
cp ../LICENSE-MIT "$crate"
cp ../LICENSE-APACHE "$crate"
pushd "$crate"
git add LICENSE-MIT LICENSE-APACHE
cargo publish --no-verify --allow-dirty
Expand Down

0 comments on commit 66d9882

Please sign in to comment.