zephyr_env.sh: Remove semicolons at ends of lines

Not needed in sh.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
Ulf Magnusson 2019-11-22 21:04:45 +01:00 committed by Andrew Boie
parent 0194d04c49
commit 0d8495c756
1 changed files with 3 additions and 3 deletions

View File

@ -60,10 +60,10 @@ unset scripts_path
# enable custom environment settings
zephyr_answer_file=~/zephyr-env_install.bash
[ -f ${zephyr_answer_file} ] && {
echo "Warning: Please rename ~/zephyr-env_install.bash to ~/.zephyrrc";
. ${zephyr_answer_file};
echo "Warning: Please rename ~/zephyr-env_install.bash to ~/.zephyrrc"
. ${zephyr_answer_file}
}
unset zephyr_answer_file
zephyr_answer_file=~/.zephyrrc
[ -f ${zephyr_answer_file} ] && . ${zephyr_answer_file};
[ -f ${zephyr_answer_file} ] && . ${zephyr_answer_file}
unset zephyr_answer_file