mirror of
https://github.com/hcengineering/platform.git
synced 2025-03-16 19:23:19 +00:00
12 lines
226 B
Bash
Executable File
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 |