Update submodule repo casablanca refs
[doc.git] / shell / smsummary.sh
1 #!/bin/bash
2 # Copyright (c) 2018 Open Network Automation Platform and contributors
3 #
4 #  Licensed under the Apache License, Version 2.0 (the "License");
5 #  you may not use this file except in compliance with the License.
6 #  You may obtain a copy of the License at
7 #
8 #           http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #  Unless required by applicable law or agreed to in writing,
11 #  software distributed under the License is distributed on an
12 #  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
13 #  either express or implied. See the License for the specific
14 #  language governing permissions and limitations under the License.
15
16 # Create a list of submodules used to build documentation
17 # Usage:   sh smsummary.sh output_file
18 #
19
20 echo "************************************************************************************" > $1
21 echo "* Submodule branches used to build this version of the documentation.              *" >> $1
22 echo "************************************************************************************" >> $1
23
24 git submodule foreach git for-each-ref \
25   --format='%(committerdate:iso8601) %(objectname) %(HEAD) %(refname) %(subject)' \
26   --sort -committerdate refs/heads/ | \
27   sed -e 's:^:       :' -e 's:       Entering .docs/submodules/::' -e 's:.git.$::' -e 's:refs/heads/::' >> $1