platform/common/scripts/fast-format.sh
Andrey Sobolev db0bbe31aa
Merge staging 12feb (#7993)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2025-02-12 23:18:50 +07:00

12 lines
226 B
Bash
Executable File

#!/bin/bash
echo $@
BASE_BRANCH=${1:-develop}
while [[ "$#" -gt 0 ]]; do
case $1 in
--branch) BASE_BRANCH="$2"; shift ;;
*) ;;
esac
shift
done
export BASE_BRANCH
./common/scripts/each-diff.sh rushx format --force