Skip to content

Commit f29f26d

Browse files
saicheemsJon Wayne Parrott
authored and
Jon Wayne Parrott
committed
Ignore bad file in endpoints lib (#479)
Causes an error in `gcloud beta app deploy`
1 parent f916eb8 commit f29f26d

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

appengine/standard/endpoints-frameworks-v2/echo/app.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ runtime: python27
22
threadsafe: true
33
api_version: 1
44

5+
skip_files:
6+
- ^(.*/)?#.*#$
7+
- ^(.*/)?.*~$
8+
- ^(.*/)?.*\.py[co]$
9+
- ^(.*/)?.*/RCS/.*$
10+
- ^(.*/)?\..*$
11+
- ^lib/setuptools/script \(dev\).tmpl$
12+
513
handlers:
614
# The endpoints handler must be mapped to /_ah/api.
715
- url: /_ah/api/.*

appengine/standard/endpoints-frameworks-v2/quickstart/app.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ runtime: python27
22
threadsafe: true
33
api_version: 1
44

5+
skip_files:
6+
- ^(.*/)?#.*#$
7+
- ^(.*/)?.*~$
8+
- ^(.*/)?.*\.py[co]$
9+
- ^(.*/)?.*/RCS/.*$
10+
- ^(.*/)?\..*$
11+
- ^lib/setuptools/script \(dev\).tmpl$
12+
513
handlers:
614
# The endpoints handler must be mapped to /_ah/api.
715
- url: /_ah/api/.*

0 commit comments

Comments
 (0)