Skip to content

Commit

Permalink
chore: don't use sparse
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBlenny committed Aug 18, 2023
1 parent 42ee412 commit 6c3e063
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform_cli/groups/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,11 +608,11 @@ def deb_publish(public: bool): # type: ignore
"""Publishes the deb to the apt repo"""
try:
echo("Publishing .deb to apt repo...", group_start=True)
call(f"platform pkg apt-clone --public {public} --sparse")
call(f"platform pkg apt-clone --public {public}")

debs_folder = Path.cwd() / DEBS_DIRECTORY

call("platform pkg apt-add --sparse", cwd=Path(debs_folder))
call("platform pkg apt-add", cwd=Path(debs_folder))
call("platform pkg apt-push")
echo(group_end=True)
except Exception as e:
Expand Down

0 comments on commit 6c3e063

Please sign in to comment.