Skip to content

Commit

Permalink
zephyr_env.sh: Remove semicolons at ends of lines
Browse files Browse the repository at this point in the history
Not needed in sh.

Signed-off-by: Ulf Magnusson <[email protected]>
  • Loading branch information
ulfalizer authored and andrewboie committed Dec 10, 2019
1 parent 0194d04 commit 0d8495c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zephyr-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0d8495c

Please sign in to comment.