From 5a5054451decf83a867a3c7e1accdd074880a2c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Sun, 27 Apr 2025 23:51:17 +0200 Subject: [PATCH] Format commands .qubesbuilder in single quotes When formatted in double quotes, the @SOURCE_DIR@ may be problematic with windows builder, as it will contain backslashes, and that will be misinterpreted by the yaml parser. While the windows paths are not relevant for those commands, .qubesbuilder file need to render correctly in that case too. --- .qubesbuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.qubesbuilder b/.qubesbuilder index 4b684d5c..a3590c3e 100644 --- a/.qubesbuilder +++ b/.qubesbuilder @@ -21,7 +21,7 @@ vm: - debian source: commands: - - "sed -i 's/$(PA_VER)/1:$(PA_VER)/g' @SOURCE_DIR@/debian/rules" + - 'sed -i ''s/$(PA_VER)/1:$(PA_VER)/g'' @SOURCE_DIR@/debian/rules' - 'sed -i /Trolltech.conf/d @SOURCE_DIR@/debian/qubes-gui-agent.install' - '@PLUGINS_DIR@/source_deb/scripts/debian-quilt @SOURCE_DIR@/series-debian-vm.conf @SOURCE_DIR@/debian/patches'