Skip to content

Commit

Permalink
Fix publish license path (bevyengine#7927)
Browse files Browse the repository at this point in the history
  • Loading branch information
cart authored and Shfty committed Mar 19, 2023
1 parent d8f344e commit 842305d
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 842305d

Please sign in to comment.