Skip to content

Commit 18ee47b

Browse files
copyleftdevclaude
andcommitted
Fix .deb packaging: remove redundant mv (same src/dst filename)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c687504 commit 18ee47b

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,10 @@ jobs:
171171
172172
# Build .deb
173173
dpkg-deb --build --root-owner-group "$PKG_DIR"
174-
mv "${PKG_DIR}.deb" "facecam-ubuntu_${PKG_VERSION}_amd64.deb"
175174
176-
echo "Built: facecam-ubuntu_${PKG_VERSION}_amd64.deb"
177-
dpkg-deb --info "facecam-ubuntu_${PKG_VERSION}_amd64.deb"
178-
dpkg-deb --contents "facecam-ubuntu_${PKG_VERSION}_amd64.deb"
175+
echo "Built: ${PKG_DIR}.deb"
176+
dpkg-deb --info "${PKG_DIR}.deb"
177+
dpkg-deb --contents "${PKG_DIR}.deb"
179178
180179
- name: Upload .deb artifact
181180
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)