This is an automated email from the ASF dual-hosted git repository.
dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-release.git
The following commit(s) were added to refs/heads/master by this push:
new 1d61968 wskadmin is an allowed executable file (#308)
1d61968 is described below
commit 1d61968ef7ea96e2a57f2c9c511d3af476d56de8
Author: David Grove <[email protected]>
AuthorDate: Tue Dec 17 13:07:31 2019 -0500
wskadmin is an allowed executable file (#308)
---
tools/rcverify.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/rcverify.sh b/tools/rcverify.sh
index 2048430..c5945c7 100755
--- a/tools/rcverify.sh
+++ b/tools/rcverify.sh
@@ -171,7 +171,7 @@ SC=$(eval $CMD >& /dev/null)
validate $? 0 "$CMD"
printf "scanning for executable files..."
-EXE=$(find "$DIR/$BASE" -type f ! -name "*.sh" ! -name "*.sh" ! -name "*.py" !
-name "*.php" ! -name "gradlew" ! -name "gradlew.bat" ! -name "exec" ! -path
"*/bin/*" -perm -001)
+EXE=$(find "$DIR/$BASE" -type f ! -name "*.sh" ! -name "*.sh" ! -name "*.py" !
-name "*.php" ! -name "gradlew" ! -name "gradlew.bat" ! -name "exec" ! -name
"wskadmin" ! -path "*/bin/*" -perm -001)
validate "$EXE" "" "$EXE"
printf "scanning for unexpected file types..."