Skip to content

Commit 6d2e700

Browse files
committed
common: fix bad egrep '*'
Signed-off-by: Nicolas Morey <nmorey@suse.com>
1 parent 40630b6 commit 6d2e700

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

helpers/common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ load_helpers()
111111
local test_type=$2
112112

113113
source ${topdir}/helpers/julog.sh
114-
for helper in $(ls ${topdir}/helpers/${test_type}/[0-9][0-9]* | egrep -v '*~$'); do
114+
for helper in $(ls ${topdir}/helpers/${test_type}/[0-9][0-9]* | grep -E -v '.*~$'); do
115115
source ${helper}
116116
done
117117
}

0 commit comments

Comments
 (0)