From 2a72d1307ef40b697519fc195ff11299072babca Mon Sep 17 00:00:00 2001 From: Lyes Saadi Date: Tue, 20 Jul 2021 23:52:28 +0100 Subject: [PATCH] Fixing nc.sh for Unix based systems In Unix based OSes, which use bash, filesystems are generally case sensitive. The nc.sh script on the other makes the assumption that case insensitive filesystems, like Window's NTFS or FAT32 are used. This also makes the nc.sh file executable by changing the file mode from 0644 to 0755, this was likely due to the fact that this program was developped using Windows which do not have a similar file permission system. --- nc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 nc.sh diff --git a/nc.sh b/nc.sh old mode 100644 new mode 100755 index ba2e09a..a91da7e --- a/nc.sh +++ b/nc.sh @@ -1,2 +1,2 @@ #!/bin/bash -dotnet run --project ./src/nc/nc.csproj -- "$@" \ No newline at end of file +dotnet run --project ./src/Nc/Nc.csproj -- "$@"