mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 23:01:05 +00:00
10 lines
246 B
Bash
Executable file
10 lines
246 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
|