mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 03:32:21 +00:00
15 lines
182 B
Bash
Executable File
15 lines
182 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
cd $(dirname $0)/derive
|
|
|
|
cargo publish
|
|
|
|
cd ..
|
|
|
|
# Let the crates.io index figure out we've published `derive_arbitrary` already.
|
|
sleep 5
|
|
|
|
cargo publish
|