File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,11 @@ if [ "$USE_LOCAL" = "true" ]; then
36
36
asciibinder package --site=$PACKAGE 2> /dev/null
37
37
else
38
38
echo " Warning: Local asciibinder not found. Falling back to container."
39
- $CONTAINER_ENGINE run --rm -v ` pwd` :/docs:Z quay.io/openshift-cs/asciibinder asciibinder package --site=$PACKAGE
39
+ $CONTAINER_ENGINE run --rm -v ` pwd` :/docs:Z quay.io/openshift-cs/asciibinder asciibinder package --site=$PACKAGE 2> /dev/null
40
+ fi
40
41
else
41
42
echo " Using $CONTAINER_ENGINE container for build"
42
- $CONTAINER_ENGINE run --rm -v ` pwd` :/docs:Z quay.io/openshift-cs/asciibinder sh -c " git config --global --add safe.directory /docs && asciibinder package --site=$PACKAGE "
43
+ $CONTAINER_ENGINE run --rm -v ` pwd` :/docs:Z quay.io/openshift-cs/asciibinder sh -c " git config --global --add safe.directory /docs && asciibinder package --site=$PACKAGE " 2> /dev/null
43
44
fi
44
45
45
46
# # MOVING FILES INTO THE RIGHT PLACES
@@ -49,4 +50,4 @@ sudo mv _package/${PACKAGE}/* ../_package/
49
50
git checkout $BRANCH
50
51
51
52
cd ..
52
- sudo rm -rf .docs_source
53
+ sudo rm -rf .docs_source
You can’t perform that action at this time.
0 commit comments