Remove fakeroot as we are root

This commit is contained in:
Oleg Kalachev
2022-10-07 22:51:34 +06:00
parent d0039ea23f
commit 373cefb01c

View File

@@ -91,7 +91,7 @@ for file in `find . -name "package.xml" -not -path "*/debian/*"`; do
cd $(dirname ${file})
rm -rf debian
bloom-generate rosdebian --os-name debian --os-version $VERSION_CODENAME --ros-distro $ROS_DISTRO --debug
fakeroot debian/rules binary
debian/rules binary # fakeroot is not needed as we are root
cd -
done