Fixed: Correct .gitattributes line endings setting

Correctly force checkin LF, checkout OS native
This commit is contained in:
ta264 2019-10-14 21:09:59 +01:00 committed by Qstick
parent a1ce5a0df1
commit 6803ef960d
4 changed files with 34 additions and 33 deletions

3
.gitattributes vendored
View File

@ -1,8 +1,9 @@
# Auto detect text files and perform LF normalization # Auto detect text files and perform LF normalization
*text eol=lf * text=auto
# Explicitly set bash scripts to have unix endings # Explicitly set bash scripts to have unix endings
*.sh text eol=lf *.sh text eol=lf
distribution/debian/* text eol=lf
macOS/Lidarr text eol=lf macOS/Lidarr text eol=lf
# Custom for Visual Studio # Custom for Visual Studio

48
debian/copyright vendored
View File

@ -1,24 +1,24 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: nzbdrone Upstream-Name: nzbdrone
Source: https://github.com/lidarr/Lidarr Source: https://github.com/lidarr/Lidarr
Files: * Files: *
Copyright: 2010-2016 Lidarr <hello@lidarr.audio> Copyright: 2010-2016 Lidarr <hello@lidarr.audio>
License: GPL-3.0+ License: GPL-3.0+
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
. .
This package is distributed in the hope that it will be useful, This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. GNU General Public License for more details.
. .
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
. .
On Debian systems, the complete text of the GNU General On Debian systems, the complete text of the GNU General
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".

2
debian/install vendored
View File

@ -1 +1 @@
nzbdrone_bin/* opt/NzbDrone nzbdrone_bin/* opt/NzbDrone

View File

@ -1,7 +1,7 @@
namespace NzbDrone.Core.Download.Clients.Sabnzbd.Responses namespace NzbDrone.Core.Download.Clients.Sabnzbd.Responses
{ {
public class SabnzbdFullStatusResponse public class SabnzbdFullStatusResponse
{ {
public SabnzbdFullStatus Status { get; set; } public SabnzbdFullStatus Status { get; set; }
} }
} }