mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-19 23:01:36 +03:00
11 lines
246 B
Bash
Executable File
11 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
|