Skip to content

Commit

Permalink
Merge pull request #16 from djbelyak/sh-permissions
Browse files Browse the repository at this point in the history
Updated hashbang and permissions for shell scripts
  • Loading branch information
dzhdanNV authored Jul 15, 2024
2 parents 5d68494 + 392e2cb commit 2505680
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 8 deletions.
7 changes: 1 addition & 6 deletions 1-Deploy.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
#!/bin/sh
#!/bin/bash

git submodule update --init --recursive

chmod +x "External/Packman/packman.sh"
chmod +x "2-Build.sh"
chmod +x "3-Prepare NRD SDK.sh"
chmod +x "4-Clean.sh"

mkdir -p "_Build"

cd "_Build"
Expand Down
2 changes: 1 addition & 1 deletion 2-Build.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

mkdir -p "_Build"

Expand Down
Empty file modified 3-Prepare NRD SDK.sh
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion 4-Clean.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

rm -rf "build"

Expand Down
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ endif ()
# Download dependencies using Packman
if (WIN32)
set (PACKMAN_EXT ".cmd")
else()
set (PACKMAN_EXT ".sh")
endif ()

if ((CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64") OR(CMAKE_SYSTEM_PROCESSOR MATCHES "AMD64"))
Expand Down
Empty file modified External/Packman/packman.sh
100644 → 100755
Empty file.
Empty file modified External/Packman/python.sh
100644 → 100755
Empty file.

0 comments on commit 2505680

Please sign in to comment.