diff --git a/.gitea/actions/cleanup/action.yml b/.gitea/actions/cleanup/action.yml index b6ea0a6..167b013 100644 --- a/.gitea/actions/cleanup/action.yml +++ b/.gitea/actions/cleanup/action.yml @@ -30,7 +30,7 @@ runs: sanitize_filename() { echo "$1" | \ tr -d '\000-\037' | \ - sed -e 's#[][\/:*?"<>|]#-#g' | \ + sed -e 's#[\\/:*?"<>|]#-#g' | \ sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' }