Skip to content

Commit e7b7597

Browse files
authored
Don't condition allowlist creation on existence. (#267)
1 parent 8a2f1bf commit e7b7597

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bedrock-entry.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ if [ -n "$allowListUsers" ]; then
146146
for f in whitelist.json allowlist.json; do
147147
if [ -f $f ]; then
148148
rm -rf $f
149-
jq -n --arg users "$allowListUsers" '$users | split(",") | map({"name": .})' > $f
150149
fi
150+
jq -n --arg users "$allowListUsers" '$users | split(",") | map({"name": .})' > $f
151151
done
152152
# activate server property to enable list usage
153153
export WHITE_LIST=true

0 commit comments

Comments
 (0)