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
|
||||
add-apt-repository -y ppa:libretime/libretime
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Adding repos and packages
|
||||
add-apt-repository -y ppa:libretime/libretime
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
#/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
echo "::group::Install Python apps"
|
||||
pip3 install nose mock
|
||||
|
||||
for app in `ls python_apps`; do
|
||||
for app in $(ls python_apps); do
|
||||
pip3 install -e python_apps/$app
|
||||
done
|
||||
echo "::endgroup::"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
failed='f'
|
||||
# Starting at repo root
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
#release.sh 1.8.2
|
||||
#creates a libretime folder with a "1.8.2" suffix
|
||||
|
|
Loading…
Reference in New Issue