Fix shebangs
This commit is contained in:
parent
225863d227
commit
0180fa0e49
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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::"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
failed='f'
|
failed='f'
|
||||||
# Starting at repo root
|
# Starting at repo root
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue