Fix shebangs
This commit is contained in:
parent
225863d227
commit
0180fa0e49
6 changed files with 7 additions and 6 deletions
2
.github/scripts/install-bionic.sh
vendored
2
.github/scripts/install-bionic.sh
vendored
|
@ -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
|
||||||
|
|
2
.github/scripts/install-xenial.sh
vendored
2
.github/scripts/install-xenial.sh
vendored
|
@ -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
|
||||||
|
|
5
.github/scripts/python-pkg-install.sh
vendored
5
.github/scripts/python-pkg-install.sh
vendored
|
@ -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::"
|
||||||
|
|
2
.github/scripts/python-pkg-test.sh
vendored
2
.github/scripts/python-pkg-test.sh
vendored
|
@ -1,4 +1,4 @@
|
||||||
#/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
failed='f'
|
failed='f'
|
||||||
# Starting at repo root
|
# Starting at repo root
|
||||||
|
|
2
.github/scripts/release.sh
vendored
2
.github/scripts/release.sh
vendored
|
@ -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
0
python_apps/airtime_analyzer/airtime_analyzer/cli.py
Executable file → Normal file
Loading…
Add table
Add a link
Reference in a new issue