Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dhcp
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
17
Issues
17
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
dhcp
Commits
e468ff7a
Commit
e468ff7a
authored
Sep 17, 2018
by
Mark Andrews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
correctly look for --repo_host= and --repo_path=
parent
d5118758
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
11 deletions
+17
-11
util/bind.sh
util/bind.sh
+17
-11
No files found.
util/bind.sh
View file @
e468ff7a
...
...
@@ -34,16 +34,22 @@ binddir=$topdir/bind
repo_host
=
"gitlab.isc.org"
repo_path
=
"isc-projects/bind9"
case
"
${
1
:-}
"
in
--repo_host
=
*
)
repo_host
=
"
${
1
}
"
;
shift
;;
--repo_path
=
*
)
repo_path
=
"
${
1
}
"
;
shift
;;
esac
while
:
do
case
"
${
1
:-}
"
in
--repo_host
=
*
)
repo_host
=
"
${
1
}
"
;
shift
continue
;;
--repo_path
=
*
)
repo_path
=
"
${
1
}
"
;
shift
continue
;;
esac
break
;
done
case
$#
in
1
)
...
...
@@ -104,7 +110,7 @@ case $# in
;;
esac
;;
*
)
echo
"usage: sh bind.sh [--repo_host=<host>] [--repo_path=<project path>]
[<branch>|<version>]
"
>
&2
*
)
echo
"usage: sh bind.sh [--repo_host=<host>] [--repo_path=<project path>]
( <branch>|<version> )
"
>
&2
exit
1
;;
esac
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment