Skip to content

Commit

Permalink
standardized prepare_obs
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhangui committed Jun 16, 2024
1 parent db629a0 commit f20b00b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prepare_obs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ if [ -f $name.packages ] ; then
echo cleaning $pkg_name-$ver
set +e
make clean && make distclean >/dev/null 2>&1
find . -type d name autom4te.cache -exec /bin/rm -rf '{}' '+'
find . -type d -name autom4te.cache -exec /bin/rm -rf '{}' '+'
set -e
fi
# remove debian directory from archive
Expand Down Expand Up @@ -158,7 +158,7 @@ if [ -f Makefile ] ; then
echo cleaning $name-$version
set +e
make clean && make distclean >/dev/null 2>&1
find . -type d name autom4te.cache -exec /bin/rm -rf '{}' '+'
find . -type d -name autom4te.cache -exec /bin/rm -rf '{}' '+'
set -e
fi

Expand Down

0 comments on commit f20b00b

Please sign in to comment.