When I start manage.py collectstaticin Django, I see messages such as:
Found another file with the destination path 'admin/js/jquery.init.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
I tried running find . -type lDjango to search for symbolic links, but found nothing.
How can I determine where another file with the same destination path is?
source
share