34dc72699e
Instead append to the existing one.
9 lines
245 B
Bash
9 lines
245 B
Bash
#!/bin/bash
|
|
export DIST="$1"
|
|
export SOURCE_ROOT="$2"
|
|
|
|
cd "$SOURCE_ROOT"
|
|
mkdir "$DIST"/.cargo
|
|
cargo vendor | sed 's/^directory = ".*"/directory = "vendor"/g' >> $DIST/.cargo/config.toml
|
|
# Move vendor into dist tarball directory
|
|
mv vendor "$DIST"
|