Skip to content

Commit

Permalink
fix misplaced space character (causing failure to read external charg…
Browse files Browse the repository at this point in the history
…e point APhase1 value)
  • Loading branch information
yankee42 committed Aug 3, 2022
1 parent 5baa756 commit c6bae5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/extopenwb/main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if [[ $(wc -l <"$outputname") -ge 5 ]]; then
VPhase1=$(grep "VPhase1" "$outputname" |head -1 | awk '{print $2}')
VPhase2=$(grep "VPhase2" "$outputname" |head -1 | awk '{print $2}')
VPhase3=$(grep "VPhase3" "$outputname" |head -1 | awk '{print $2}')
APhase1=$(grep "APhase1 ""$outputname" |head -1 | awk '{print $2}')
APhase1=$(grep "APhase1" "$outputname" |head -1 | awk '{print $2}')
APhase2=$(grep "APhase2" "$outputname" |head -1 | awk '{print $2}')
APhase3=$(grep "APhase3" "$outputname" |head -1 | awk '{print $2}')
boolChargeStat=$(grep "boolChargeStat" "$outputname" |head -1 | awk '{print $2}')
Expand Down

0 comments on commit c6bae5c

Please sign in to comment.