You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The server_path[0] is empty because the init script uses the local variable server_path.
Changing the 2 lines with the local var to server_path1 solves the issue:
while IFS= read -r -d $'\0' server_path1; do
local name=$(basename $server_path1)
The text was updated successfully, but these errors were encountered:
The server_path[0] is empty because the init script uses the local variable server_path.
Changing the 2 lines with the local var to server_path1 solves the issue:
while IFS= read -r -d $'\0' server_path1; do
local name=$(basename $server_path1)
The text was updated successfully, but these errors were encountered: