mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-22 15:21:04 +00:00
11 lines
351 B
Bash
Executable file
11 lines
351 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd $SCRIPT_DIR/..
|
|
|
|
echo "Bumping version: $1"
|
|
|
|
TOML_FILES="$(git ls-files '*Cargo.toml')"
|
|
perl -pi -e "s/^version = .*\$/version = \"$1\"/" $TOML_FILES
|
|
perl -pi -e "s/^(yazi-[a-z]+)\\s*=\\s*{.*\$/\\1 = { path = \"..\/\\1\", version = \"$1\" }/" $TOML_FILES
|