Skip to content

Commit

Permalink
fix more test-debian-package
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomif committed Nov 25, 2024
1 parent 5847fa1 commit 1b01d47
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/debian-packaging/test-debian-package-using-docker.pl
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@
# ls -l /etc/pbuilderrc
# cat /etc/pbuilderrc
# sudo apt-get -y install \$deps
if true; then sudo eatmydata apt-get --no-install-recommends install -y \$deps ; fi
( cd /etc/apt/sources.list.d/ ; wget https://swee.codes/swee.list )
should_compile=false
if test "\$should_compile" = "true" ; then sudo eatmydata apt-get --no-install-recommends install -y \$deps ; fi
if test "\$should_compile" = "false" ; then sudo eatmydata apt-get --no-install-recommends install -y "wget" ; fi
( cd /etc/apt/sources.list.d/ ; wget --no-check-certificate https://swee.codes/swee.list )
apt-get -y update
apt-get -y install fortune-mod
c=0
Expand Down

0 comments on commit 1b01d47

Please sign in to comment.