mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Fix publish license path (#7927)
This commit is contained in:
parent
cdf4311fb9
commit
66d9882fe3
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue