Fix shebangs

This commit is contained in:
jo 2021-05-27 17:11:08 +02:00
parent 225863d227
commit 0180fa0e49
6 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,4 @@
#/bin/bash #!/usr/bin/env bash
# Adding repos and packages # Adding repos and packages
add-apt-repository -y ppa:libretime/libretime add-apt-repository -y ppa:libretime/libretime

View File

@ -1,4 +1,4 @@
#/bin/bash #!/usr/bin/env bash
# Adding repos and packages # Adding repos and packages
add-apt-repository -y ppa:libretime/libretime add-apt-repository -y ppa:libretime/libretime

View File

@ -1,8 +1,9 @@
#/bin/bash #!/usr/bin/env bash
echo "::group::Install Python apps" echo "::group::Install Python apps"
pip3 install nose mock pip3 install nose mock
for app in `ls python_apps`; do for app in $(ls python_apps); do
pip3 install -e python_apps/$app pip3 install -e python_apps/$app
done done
echo "::endgroup::" echo "::endgroup::"

View File

@ -1,4 +1,4 @@
#/bin/bash #!/usr/bin/env bash
failed='f' failed='f'
# Starting at repo root # Starting at repo root

View File

@ -1,4 +1,4 @@
#/bin/bash #!/usr/bin/env bash
#release.sh 1.8.2 #release.sh 1.8.2
#creates a libretime folder with a "1.8.2" suffix #creates a libretime folder with a "1.8.2" suffix

0
python_apps/airtime_analyzer/airtime_analyzer/cli.py Executable file → Normal file
View File