mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
24 lines
552 B
Plaintext
24 lines
552 B
Plaintext
# Quick maintenance script which broadcasts the license files to all crates
|
|
# that are released on crates.io
|
|
|
|
# Change to the root of the repository
|
|
cd ($env.FILE_PWD | path dirname)
|
|
|
|
let crates = [
|
|
"wgpu",
|
|
"wgpu-core",
|
|
"wgpu-core/platform-deps/apple",
|
|
"wgpu-core/platform-deps/emscripten",
|
|
"wgpu-core/platform-deps/wasm",
|
|
"wgpu-core/platform-deps/windows-linux-android",
|
|
"wgpu-hal",
|
|
"wgpu-info",
|
|
"wgpu-types",
|
|
"naga",
|
|
"naga-cli",
|
|
]
|
|
|
|
for crate in $crates {
|
|
cp LICENSE.APACHE LICENSE.MIT $"./($crate)/"
|
|
}
|