Skip to content

Commit

Permalink
added the flag dash
Browse files Browse the repository at this point in the history
  • Loading branch information
AccountMoved committed Sep 24, 2022
1 parent 71e7958 commit 00d903f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ all:
echo "2.0" > ipk/debian-binary
cp -r data ipk/
cp -r control ipk/
cd ipk/control && tar --owner=0 --group=0 czvf ../control.tar.gz .
cd ipk/data && tar --owner=0 --group=0 czvf ../data.tar.gz .
cd ipk/ && tar --owner=0 --group=0 czvf "./${IPK_NAME}" ./control.tar.gz ./data.tar.gz ./debian-binary
cd ipk/control && tar --owner=0 --group=0 -czvf ../control.tar.gz .
cd ipk/data && tar --owner=0 --group=0 -czvf ../data.tar.gz .
cd ipk/ && tar --owner=0 --group=0 -czvf "./${IPK_NAME}" ./control.tar.gz ./data.tar.gz ./debian-binary

clean:
rm -rf ipk

0 comments on commit 00d903f

Please sign in to comment.