Browse Source

Merge pull request #93 from matt335672/support_debian_testing

Support Debian bookworm in wrapped build script
pull/95/head
matt335672 1 year ago
committed by GitHub
parent
commit
f6ab4e62a6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      scripts/install_pulseaudio_sources_apt.sh

+ 8
- 0
scripts/install_pulseaudio_sources_apt.sh View File

@ -118,6 +118,14 @@ if [ ! -d "$PULSE_DIR" ]; then
Kali-2022*)
sudo apt-get install -y doxygen
;;
Debian-n/a)
# Debian testing build
case "$codename" in
bookworm)
sudo apt-get install -y doxygen
;;
esac
;;
esac
cd "$(dirname $PULSE_DIR)"


Loading…
Cancel
Save