Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
soledad
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drebs
soledad
Commits
9c527fe9
Commit
9c527fe9
authored
10 years ago
by
Kali Kaneko
Browse files
Options
Downloads
Patches
Plain Diff
Bail out ddocs installation if the path doesn't exist. Fix: #6671
Conflicts: common/MANIFEST.in
parent
ef0d008b
Branches
Branches containing commit
Tags
0.6.4
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
common/MANIFEST.in
+4
-0
4 additions, 0 deletions
common/MANIFEST.in
common/changes/bug_6671-bail-out-if-no-cdocs-dir
+1
-0
1 addition, 0 deletions
common/changes/bug_6671-bail-out-if-no-cdocs-dir
common/setup.py
+5
-0
5 additions, 0 deletions
common/setup.py
with
10 additions
and
0 deletions
common/MANIFEST.in
+
4
−
0
View file @
9c527fe9
...
...
@@ -2,3 +2,7 @@ include pkg/*
include versioneer.py
include LICENSE
include CHANGELOG
# What do we want the ddocs folder in the source package for? -- kali
# it should be enough with having the compiled stuff.
recursive-include src/leap/soledad/common/ddocs *
This diff is collapsed.
Click to expand it.
common/changes/bug_6671-bail-out-if-no-cdocs-dir
0 → 100644
+
1
−
0
View file @
9c527fe9
o Bail out if cdocs/ dir does not exist. Closes: #6671
This diff is collapsed.
Click to expand it.
common/setup.py
+
5
−
0
View file @
9c527fe9
...
...
@@ -155,6 +155,11 @@ def build_ddocs_py(basedir=None, with_src=True):
dest_prefix
=
join
(
basedir
,
*
dest_common_path
)
ddocs_prefix
=
join
(
prefix
,
'
ddocs
'
)
if
not
isdir
(
ddocs_prefix
):
print
"
No ddocs/ folder, bailing out...
"
return
ddocs
=
{}
# design docs are represented by subdirectories of `ddocs_prefix`
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment