I am trying to run an application in an application using the following command.
gcloud --project=xxx preview app deploy app.yaml
Then I get the following error message
Updating module [default]...| Updating module [default].../ Updating module [default]...failed. ERROR: (gcloud.preview.app.deploy) Error Response: [400] Invalid character in filename: server/lib/flask/ext/setuptools/script (dev).tmpl Build step 'Execute shell' marked build as failure Finished: FAILURE
Content Script (dev) .tmpl
# EASY-INSTALL-DEV-SCRIPT: %(spec)r,%(script_name)r __requires__ = %(spec)r __import__('pkg_resources').require(%(spec)r) __file__ = %(dev_path)r exec(compile(open(__file__).read(), __file__, 'exec'))
Questions
- What is Script (dev) .tmpl
- Why am I getting this error.
updated based on first answer
I added the following to the app.yaml file.
skip_files: - server / lib / flask / ext / setuptools / script (dev) .tmpl
However, he still gives me the same error.
source share