mirror of
https://github.com/kvz/bash3boilerplate.git
synced 2025-01-21 03:24:57 +00:00
Change egrep to grep -E in acceptance test script to comply with ShellCheck
This commit is contained in:
parent
12ea4dd75f
commit
84685a451b
@ -15,7 +15,8 @@ Released: TBA.
|
||||
|
||||
- [ ] Upgrade to `lanyon@0.0.55`
|
||||
- [x] Fix typos in megamount (thanks @gsaponaro)
|
||||
- [x] Enable color in screen or tmux (@gmasse)
|
||||
- [x] Enable color in screen or tmux (#92, @gmasse)
|
||||
- [x] Change `egrep` to `grep -E` in acceptance test script to comply with ShellCheck (#92, @gmasse)
|
||||
|
||||
## v2.3.0
|
||||
|
||||
|
@ -148,7 +148,7 @@ while IFS=$'\n' read -r scenario; do
|
||||
"${curFile}"
|
||||
fi
|
||||
if grep -q 'ACCPTST:STDIO_REPLACE_REMOTE_EXEC' "${curFile}"; then
|
||||
egrep -v 'remote-exec\): [ a-zA-Z]' "${curFile}" > "${__sysTmpDir}/accptst-filtered.txt"
|
||||
grep -Ev 'remote-exec\): [ a-zA-Z]' "${curFile}" > "${__sysTmpDir}/accptst-filtered.txt"
|
||||
mv "${__sysTmpDir}/accptst-filtered.txt" "${curFile}"
|
||||
fi
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user