aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2020-09-16 21:04:42 -0400
committerGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2020-09-16 21:04:42 -0400
commitf9fa751f290e0f6baa997c1e76d552b2947a965f (patch)
tree47156e8078bcc722215317ed4b6840d254e4c190 /.github
parentad79b76fbf6d3752035db715290487966d1e5132 (diff)
No need for "-e" in simple sed invocations.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 103c2605..3928a215 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -71,7 +71,7 @@ jobs:
version="${{ github.event.inputs.tag }}"
if [[ -z $version ]]; then
version=`ls -1 src/textadept_*.zip | head -1 |
- sed -e 's/[^_]\+_\(.\+\)\.[^.]\+\.zip/\1/;'`
+ sed 's/[^_]\+_\(.\+\)\.[^.]\+\.zip/\1/;'`
fi
echo "::set-output name=version::$version"