mirror of
https://github.com/hassio-addons/addon-vscode.git
synced 2025-05-03 18:51:23 +00:00
Fix unbound variable in log warning message (#736)
This commit is contained in:
parent
28a32ed51a
commit
9245e790c9
1 changed files with 2 additions and 2 deletions
|
@ -18,9 +18,9 @@ done
|
||||||
|
|
||||||
# Some links to old locations, to not mess with the user's muscle memory
|
# Some links to old locations, to not mess with the user's muscle memory
|
||||||
ln -s "/homeassistant" "/config" \
|
ln -s "/homeassistant" "/config" \
|
||||||
|| bashio::log.warning "Failed linking common directory: ${dir}"
|
|| bashio::log.warning "Failed linking common directory: /config"
|
||||||
ln -s "/homeassistant" "${HOME}/config" \
|
ln -s "/homeassistant" "${HOME}/config" \
|
||||||
|| bashio::log.warning "Failed linking common directory: ${dir}"
|
|| bashio::log.warning "Failed linking common directory: ${HOME}/config"
|
||||||
|
|
||||||
# Store SSH settings in add-on data folder
|
# Store SSH settings in add-on data folder
|
||||||
if ! bashio::fs.directory_exists "${SSH_USER_PATH}"; then
|
if ! bashio::fs.directory_exists "${SSH_USER_PATH}"; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue