Skip to content

Commit 2cc88b9

Browse files
use perm more genericly in find
1 parent fa2eec8 commit 2cc88b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

init-plain/usr/local/bin/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -e
33

4-
for x in $(find /opt/qnib/entry/ -type f -perm +111 |sort);do
4+
for x in $(find /opt/qnib/entry/ -type f -perm /u+x |sort);do
55
echo "> execute entrypoint '${x}'"
66
if [[ "$x" == *.env ]];then
77
source ${x}

0 commit comments

Comments
 (0)