From 8ac8a9cead018db4a3a954c7fd543be574619bc9 Mon Sep 17 00:00:00 2001 From: Phiippe Favre Date: Sun, 3 Aug 2025 12:54:11 +0200 Subject: [PATCH] fix: Correction chemin install_gaming.sh vers /usr/bin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changement du chemin de copie de /usr/local/bin vers /usr/bin - Harmonisation avec la structure standard du système 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- files_to_inject/preseeds/default.preseed | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files_to_inject/preseeds/default.preseed b/files_to_inject/preseeds/default.preseed index 555ebe7..9832ece 100755 --- a/files_to_inject/preseeds/default.preseed +++ b/files_to_inject/preseeds/default.preseed @@ -93,8 +93,8 @@ d-i preseed/late_command string \ in-target sh -c "for u in \`awk -F: '\$3 == 1000 { print \$1 }' /etc/passwd\`; do chsh -s /usr/bin/fish \$u 2>/dev/null; done" ; \ in-target dpkg --add-architecture i386 ; \ in-target apt-get update ; \ - sh -c 'cp /cdrom/preseeds/install_gaming.sh /target/usr/local/bin/install_gaming.sh ; \ - chmod +x /target/usr/local/bin/install_gaming.sh' ; \ + sh -c 'cp /cdrom/preseeds/install_gaming.sh /target/usr/bin/install_gaming.sh ; \ + chmod +x /target/usr/bin/install_gaming.sh' ; \ sh -c 'cp "/cdrom/preseeds/Debian Gaming Deployment Tool.desktop" /target/usr/share/applications/ ; \ chmod 644 /target/usr/share/applications/"Debian Gaming Deployment Tool.desktop"' \