mirror of
https://github.com/Drop-OSS/drop
synced 2026-08-27 14:23:05 -04:00
14 lines
No EOL
218 B
Bash
Executable file
14 lines
No EOL
218 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
set -e
|
|
set -x
|
|
|
|
ARG_TOKEN="--token=$CARGO_TOKEN"
|
|
|
|
cd $DIR/native_model_macro
|
|
cargo publish $ARG_TOKEN $@
|
|
|
|
cd $DIR
|
|
cargo publish $ARG_TOKEN $@ |