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
21b2b86864
commit
289fd1d0f2
1 changed files with 2 additions and 2 deletions
|
@ -51,8 +51,8 @@ pushd crates
|
||||||
for crate in "${crates[@]}"
|
for crate in "${crates[@]}"
|
||||||
do
|
do
|
||||||
echo "Publishing ${crate}"
|
echo "Publishing ${crate}"
|
||||||
cp ../docs/LICENSE-MIT "$crate"
|
cp ../LICENSE-MIT "$crate"
|
||||||
cp ../docs/LICENSE-APACHE "$crate"
|
cp ../LICENSE-APACHE "$crate"
|
||||||
pushd "$crate"
|
pushd "$crate"
|
||||||
git add LICENSE-MIT LICENSE-APACHE
|
git add LICENSE-MIT LICENSE-APACHE
|
||||||
cargo publish --no-verify --allow-dirty
|
cargo publish --no-verify --allow-dirty
|
||||||
|
|
Loading…
Reference in a new issue