Skip to content

Commit e7157fa

Browse files
authored
Fixing small tipos making script fail. (hestiacp#3959)
1 parent 671b44a commit e7157fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/v-update-white-label-logo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ elif [ ! -f "$HESTIA/web/images/custom/logo.svg" ] && [ "$download" = "yes" ]; t
3737
fi
3838

3939
if [ -f "$HESTIA/web/images/custom/logo.png" ]; then
40-
cp -f $"HESTIA/web/images/custom/logo.png" "$HESTIA/web/images/logo.png"
40+
cp -f "$HESTIA/web/images/custom/logo.png" "$HESTIA/web/images/logo.png"
4141
elif [ ! -f "$HESTIA/web/images/custom/logo.png" ] && [ "$download" = "yes" ]; then
4242
download_file "https://raw.githubusercontent.com/hestiacp/hestiacp/release/web/images/logo.png" "$HESTIA/web/images/logo.png"
4343
fi
@@ -49,7 +49,7 @@ elif [ ! -f "$HESTIA/web/images/custom/logo-header.svg" ] && [ "$download" = "ye
4949
fi
5050

5151
if [ -f "$HESTIA/web/images/custom/favicon.png" ]; then
52-
cp -f" $HESTIA/web/images/custom/favicon.png" "$HESTIA/web/images/favicon.png"
52+
cp -f "$HESTIA/web/images/custom/favicon.png" "$HESTIA/web/images/favicon.png"
5353
elif [ ! -f "$HESTIA/web/images/custom/favicon.png" ] && [ "$download" = "yes" ]; then
5454
download_file "https://raw.githubusercontent.com/hestiacp/hestiacp/release/web/images/favicon.png" "$HESTIA/web/images/favicon.png"
5555
fi

0 commit comments

Comments
 (0)