We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dc9143 commit 649a934Copy full SHA for 649a934
src/sentry/runner/commands/repair.py
@@ -21,8 +21,10 @@ def repair():
21
from sentry.utils.integrationdocs import sync_docs, DOC_FOLDER
22
if os.access(DOC_FOLDER, os.W_OK):
23
sync_docs()
24
+ elif os.path.isdir(DOC_FOLDER):
25
+ click.echo(' - skipping, path cannot be written to: %r' % DOC_FOLDER)
26
else:
- click.echo(' - skipping (path cannot be written to)')
27
+ click.echo(' - skipping, path does not exist: %r' % DOC_FOLDER)
28
29
from sentry.models import Activity, Project, ProjectKey
30
click.echo('Creating missing project keys')
0 commit comments