use -p to create dirs

This commit is contained in:
Paul Dino Jones 2026-01-09 17:23:39 -05:00
parent c4ea4737f7
commit 9dc6337211
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ jobs:
- name: Copy script files around to stop .github from being added to the package then build the package - name: Copy script files around to stop .github from being added to the package then build the package
run: | run: |
mkdir PKG_SOURCE mkdir PKG_SOURCE
mkdir PKG_SOURCE/DEBIAN mkdir -p PKG_SOURCE/DEBIAN
mkdir PKG_SOURCE/usr/bin/ mkdir -p PKG_SOURCE/usr/bin/
cp ./tools/distro/debian/dpkg/control ./PKG_SOURCE/DEBIAN/control cp ./tools/distro/debian/dpkg/control ./PKG_SOURCE/DEBIAN/control
cp ./build/monocoque ./PKG_SOURCE/usr/bin/monocoque cp ./build/monocoque ./PKG_SOURCE/usr/bin/monocoque
dpkg-deb --build PKG_SOURCE monocoque.deb dpkg-deb --build PKG_SOURCE monocoque.deb