Avoiding a useless fork from sed
This commit is contained in:
parent
4cab24857d
commit
449bd834a8
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
# remove version from filename by stripping the extension
|
# remove version from filename by stripping the extension
|
||||||
strip_ext() {
|
strip_ext() {
|
||||||
echo $1 | sed 's/\.[^.]*$//'| sed 's/[a-z_]*$//'
|
echo $1 | sed -e 's/\.[^.]*$//' -e 's/[a-z_]*$//'
|
||||||
}
|
}
|
||||||
|
|
||||||
# find the version from a filename by stripping everything but the extension
|
# find the version from a filename by stripping everything but the extension
|
||||||
|
|
Loading…
Reference in New Issue