Serenity Operating System
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Ports: Fix ignoring patches

According to gitignore docs,

> It is not possible to re-include a file if a parent directory of that file is excluded.

So make sure to re-include "*/patches" before trying to re-include "*/patches/*".
This commit also converts the .gitignore file to have Unix line endings.

authored by

Sergey Bugaev and committed by
Andreas Kling
63cef4bd 16b9b3f2

+4 -3
+4 -3
Ports/.gitignore
··· 1 - */* 2 - !*/package.sh 3 - !*/patches/* 1 + */* 2 + !*/package.sh 3 + !*/patches 4 + !*/patches/*