Skip to content

Commit

Permalink
Restyled by shellharden
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits committed Jun 14, 2022
1 parent c95a7be commit 4ac2735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/examples/imxlinux_example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if [ "$IMX_SDK_ROOT" = "" -o ! -d "$IMX_SDK_ROOT" ]; then
fi
env

entries=(`echo $(ls "$IMX_SDK_ROOT") | tr ' ' ' '`)
entries=("$(echo "$(ls "$IMX_SDK_ROOT")" | tr ' ' ' ')")
for entry in "${entries[@]}"; do
if [ "$(echo "$entry" | grep -E "^environment-setup-")" != "" ]; then
env_setup_script=$entry
Expand Down

0 comments on commit 4ac2735

Please sign in to comment.