Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
devflow
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
itminedu
devflow
Commits
1296e42b
Commit
1296e42b
authored
12 years ago
by
Christos Stavrakakis
Browse files
Options
Downloads
Patches
Plain Diff
Option for specifying debian branch to use
parent
b8f857f8
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
devflow/autopkg.py
+9
-1
9 additions, 1 deletion
devflow/autopkg.py
with
9 additions
and
1 deletion
devflow/autopkg.py
+
9
−
1
View file @
1296e42b
...
...
@@ -140,6 +140,11 @@ def main():
action
=
"
store_true
"
,
help
=
"
Specifies a source-only build, no binary packages
"
"
need to be made.
"
)
parser
.
add_option
(
"
--debian-branch
"
,
dest
=
"
debian_branch
"
,
default
=
None
,
help
=
"
Use this debian branch, instead of
"
"
auto-discovering the debian branch to use
"
)
(
options
,
args
)
=
parser
.
parse_args
()
...
...
@@ -193,6 +198,9 @@ def main():
versioning
.
get_python_version
()
# Get the debian branch
if
options
.
debian_branch
:
debian_branch
=
options
.
debian_branch
else
:
debian_branch
=
utils
.
get_debian_branch
(
branch
)
origin_debian
=
"
origin/
"
+
debian_branch
...
...
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