diff options
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/releng-macros.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/jjb/releng-macros.yaml b/jjb/releng-macros.yaml index d83bf7fca..ece836717 100644 --- a/jjb/releng-macros.yaml +++ b/jjb/releng-macros.yaml @@ -163,14 +163,14 @@ find docs/ -name 'index.rst' -printf '%h\n' | while read dir do - _name="${{dir##*/}}" + _name="${dir##*/}" _build="$dir/build" _output="docs/output/$_name" echo - echo "#################${{dir//?/#}}" - echo "Building DOCS in ${{dir}}" - echo "#################${{dir//?/#}}" + echo "#################${dir//?/#}" + echo "Building DOCS in $dir" + echo "#################${dir//?/#}" echo mkdir -p "$_output" |