Update 00-folders.sh

This commit is contained in:
Alexandre
2023-10-08 14:03:58 +02:00
committed by GitHub
parent 1726ec3535
commit 234dfab294

View File

@@ -26,7 +26,7 @@ rm -r /opt/tplink/EAPController/data/*
# Create symlinks for all files in /data
# shellcheck disable=SC2086
for files in $(ls -d "$CONFIGSOURCE"/*); do
for files in "$CONFIGSOURCE"/*; do
if [ -e "$files" ]; then
ln -s "$files" /opt/tplink/EAPController/data
fi