7 lines
195 B
Bash
Executable file
7 lines
195 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
REPO_DIR=$( cd $(dirname ${BASH_SOURCE[0]})/..; pwd )
|
|
|
|
rustup toolchain update stable;
|
|
cargo +stable publish --verbose --manifest-path ${REPO_DIR}/framed/Cargo.toml;
|