ruxkor / checkinstall

local fork of http://checkinstall.izto.org/checkinstall.git
GNU General Public License v2.0
31 stars 18 forks source link

File creation with sudo are not detected. #5

Open fmv1992 opened 1 year ago

fmv1992 commented 1 year ago

I had the following on my makefile:

echo 'abc' | sudo tee /usr/share/xyz/config.conf

But then the new file creation was not detected. However changing it to:

echo 'abc' | tee /usr/share/xyz/config.conf

Worked. Is this pointed out in the documentation?