Skip to content

Commit

Permalink
shebang and fix line ending
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasDorier committed Mar 6, 2018
1 parent 21f5c94 commit 2c49d61
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -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 changes: 2 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#!/bin/bash

dotnet build -c Release BTCPayServer/BTCPayServer.csproj
2 changes: 2 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#!/bin/bash

dotnet run --no-launch-profile --no-build -c Release -p "BTCPayServer/BTCPayServer.csproj" -- "$@"

0 comments on commit 2c49d61

Please sign in to comment.