mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-01 09:00:03 +01:00
shebang and fix line ending
This commit is contained in:
parent
21f5c94cff
commit
2c49d61682
3 changed files with 21 additions and 0 deletions
17
.gitattributes
vendored
Normal file
17
.gitattributes
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Set the default behavior, in case people don't have core.autocrlf set.
|
||||
* text=auto
|
||||
|
||||
# Explicitly declare text files you want to always be normalized and converted
|
||||
# to native line endings on checkout.
|
||||
*.c text
|
||||
*.h text
|
||||
|
||||
# Declare files that will always have CRLF line endings on checkout.
|
||||
*.sln text eol=crlf
|
||||
|
||||
# Declare files that will always have CRLF line endings on checkout.
|
||||
*.sh text eol=lf
|
||||
|
||||
# Denote all files that are truly binary and should not be modified.
|
||||
*.png binary
|
||||
*.jpg binary
|
2
build.sh
2
build.sh
|
@ -1 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
dotnet build -c Release BTCPayServer/BTCPayServer.csproj
|
||||
|
|
2
run.sh
2
run.sh
|
@ -1 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
dotnet run --no-launch-profile --no-build -c Release -p "BTCPayServer/BTCPayServer.csproj" -- "$@"
|
||||
|
|
Loading…
Add table
Reference in a new issue