Skip to content

Commit 415cd95

Browse files
Vitexusclaude
andcommitted
fix: correct Makefile line continuation in sed injection (\\→\)
The python insertion script emitted \\ (two chars) which the shell interpreted as a literal backslash argument to sed instead of a Makefile recipe line continuation; replace with single \. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 7e90339 commit 415cd95

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

debian/rules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ override_dh_install:
2222
dh_install
2323
sed -i "1a defined('APP_NAME') || define('APP_NAME', '$(PKG_SOURCE)');" \
2424
debian/php-vitexsoftware-ease-bootstrap5-widgets/usr/share/php/EaseTWB5Widgets/autoload.php
25-
sed -i "s|: 'unknown'|: '$(PKG_SOURCE)'|" \\
25+
sed -i "s|: 'unknown'|: '$(PKG_SOURCE)'|" \
2626
debian/php-vitexsoftware-ease-bootstrap5-widgets/usr/share/php/EaseTWB5Widgets/autoload.php
27-
sed -i "s|: '0.0.0'|: '$(PKG_VERSION)'|" \\
27+
sed -i "s|: '0.0.0'|: '$(PKG_VERSION)'|" \
2828
debian/php-vitexsoftware-ease-bootstrap5-widgets/usr/share/php/EaseTWB5Widgets/autoload.php
2929
sed -i "2a defined('APP_VERSION') || define('APP_VERSION', '$(PKG_VERSION)');" \
3030
debian/php-vitexsoftware-ease-bootstrap5-widgets/usr/share/php/EaseTWB5Widgets/autoload.php

0 commit comments

Comments
 (0)