ci: do not error when nothing with nitunit_some
[nit.git] / contrib / neo_doxygen / gen-all.sh
1 #! /bin/bash
2
3 # This file is part of NIT ( http://www.nitlanguage.org ).
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # ./gen-all.sh <source_language> <directory>
18 #
19 # Document all projects in the specified directory.
20 #
21 # Projects are direct sub-directories of the specified directory.
22 # Every project directory must contain a `.nx_config` file.
23 # Also, every project must include the Doxygen XML output in its `doxygen/xml`
24 # directory.
25
26 for dir in "$2"/*; do
27 if [ -d "$dir" ]; then
28 if [ -f "$dir/.nx_config" ]; then
29 # Note: gen-one.sh already prints errors.
30 ./gen-one.sh "$1" "$dir" || exit
31 fi
32 fi
33 done