mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-03-06 14:27:48 +00:00
Fix execution flag command for tools scripts
This commit is contained in:
parent
100d08a231
commit
c89b0bf74c
|
@ -1325,7 +1325,7 @@ modules:
|
||||||
# Tools
|
# Tools
|
||||||
- mkdir -p /app/tools
|
- mkdir -p /app/tools
|
||||||
- cp -r tools/** /app/tools
|
- cp -r tools/** /app/tools
|
||||||
- find /app/tools -name '*.py|*.sh' -exec chmod +x {} \;
|
- find /app/tools -type f \( -name "*.sh" -o -name "*.py" \) -exec chmod +x {} \;
|
||||||
|
|
||||||
# Function libraries
|
# Function libraries
|
||||||
- mkdir -p /app/libexec
|
- mkdir -p /app/libexec
|
||||||
|
@ -1361,4 +1361,4 @@ modules:
|
||||||
sources:
|
sources:
|
||||||
- type: git
|
- type: git
|
||||||
url: https://github.com/XargonWan/RetroDECK.git
|
url: https://github.com/XargonWan/RetroDECK.git
|
||||||
branch: THISBRANCH
|
branch: THISBRANCH
|
||||||
|
|
Loading…
Reference in a new issue