From 503c33b58c4d8ceba04982cafb6468657ff7ddd7 Mon Sep 17 00:00:00 2001 From: Secret Date: Sat, 26 Apr 2025 03:45:51 +0200 Subject: [PATCH] fix typo in debug output for firstrun.sh The debug output refers to it as "firstuse.sh" instead of "firstrun.sh" like everywhere else. I could not find any other references to this string, so I am assuming its a mistake. --- src/imagewriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imagewriter.cpp b/src/imagewriter.cpp index 91410576d..3fe6a5c2d 100644 --- a/src/imagewriter.cpp +++ b/src/imagewriter.cpp @@ -1227,7 +1227,7 @@ void ImageWriter::setImageCustomization(const QByteArray &config, const QByteArr qDebug() << "Custom config.txt entries:" << config; qDebug() << "Custom cmdline.txt entries:" << cmdline; - qDebug() << "Custom firstuse.sh:" << firstrun; + qDebug() << "Custom firstrun.sh:" << firstrun; qDebug() << "Cloudinit:" << cloudinit; }