2
Hello, I’m trying to add a regex to app.yaml
to ignore files with strange names on Google App Engine, but it’s not working.
My regular expression:
skip_files:
- [.\\~#%&*{}:<>?|\"-!]
I’m getting this mistake:
appcfg.py: error: Error Parsing /home/klarkc/project/dist/app.yaml: while Scanning for the next token found Character '|' that cannot start any token in "/home/klarkc/project/dist/app.yaml", line 49, column 18.
You need an expression that ignores the characters:
.\~#%&*{}:<>?|"-!
, right?– David
That’s right, let it work in yaml
– Walker Leite