Files
huly-platform/common/scripts/fast-format.sh
T
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