Merge pull request #1232 from BastilleBSD/tschettervictor-patch-1

convert: fix newline
This commit is contained in:
tschettervictor
2025-09-19 12:20:13 -06:00
committed by GitHub

View File

@@ -276,7 +276,7 @@ if [ "$#" -eq 1 ]; then
# Ask if user is sure they want to convert the jail
# but only if AUTO_YES=0
if [ "${AUTO_YES}" -ne 1 ]; then
warn "/n[WARNING]: Jail conversion from thin to thick can't be undone!\n"
warn "\n[WARNING]: Jail conversion from thin to thick can't be undone!\n"
# shellcheck disable=SC3045
read -p "Are you sure you want to continue? [y|n]:" _answer
case "${_answer}" in