Skip to content

Commit

Permalink
Merge pull request #7 from godrei/whitespace_fix
Browse files Browse the repository at this point in the history
white space fix
  • Loading branch information
viktorbenei committed Dec 7, 2015
2 parents 4e70150 + 3057c1d commit 6d3b0e1
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions step.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,13 @@ if [ ! -z "${workdir}" ] ; then
cd "${workdir}"
fi

clean_build_param=''
if [[ "${is_clean_build}" == "yes" ]] ; then
clean_build_param='clean'
fi


analyze_cmd="xcodebuild ${CONFIG_xcode_project_action} \"${project_path}\""
analyze_cmd="$analyze_cmd -scheme \"${scheme}\""
analyze_cmd="$analyze_cmd ${clean_build_param} analyze"
if [[ "${is_clean_build}" == "yes" ]] ; then
analyze_cmd="$analyze_cmd clean"
fi
analyze_cmd="$analyze_cmd analyze"

if [[ "${is_force_code_sign}" == "yes" ]] ; then
echo " (!) Using Force Code Signing mode!"
Expand Down

0 comments on commit 6d3b0e1

Please sign in to comment.