Skip to content

Commit

Permalink
rename crowdin_branch_name variable
Browse files Browse the repository at this point in the history
  • Loading branch information
VBeytok committed Apr 24, 2020
1 parent 019c53d commit 66a3cd4
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,19 +79,14 @@ if [[ "$INPUT_DEBUG_MODE" = true ]]; then
set -x;
fi

# declare -a config_options=();
# declare -a options=( "--no-progress" );

CONFIG_OPTIONS="";
OPTIONS="--no-progress";

if [[ -n "$INPUT_CROWDIN_BRANCH_NAME" ]]; then
# options+=( "--branch=$INPUT_BRANCH_NAME" );
OPTIONS="${OPTIONS} --branch=$INPUT_BRANCH_NAME"
OPTIONS="${OPTIONS} --branch=${INPUT_CROWDIN_BRANCH_NAME}"
fi

if [[ "$INPUT_DRYRUN_ACTION" = true ]]; then
#options+=( "--dryrun" );
OPTIONS="${OPTIONS} --dryrun"
fi

Expand Down

0 comments on commit 66a3cd4

Please sign in to comment.