Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing shebang (#!) lines #183

Merged
merged 1 commit into from
Nov 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ci/devstack.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

#
# Installs Devstack with the OIDC plugin
#
Expand Down
2 changes: 2 additions & 0 deletions ci/microshift.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

#
# Installs Microshift on Docker
#
Expand Down
2 changes: 2 additions & 0 deletions ci/run_functional_tests_openshift.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

# Creates the appropriate credentials and runs tests
#
# Tests expect the resource to be name Devstack
Expand Down
2 changes: 2 additions & 0 deletions ci/run_functional_tests_openstack.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

# Creates the appropriate credentials and runs tests
#
# Tests expect the resource to be name Devstack
Expand Down
2 changes: 2 additions & 0 deletions ci/run_unit_tests.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

set -xe

if [[ ! "${CI}" == "true" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion ci/setup-oc-client.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

set -xe

Expand Down
2 changes: 1 addition & 1 deletion ci/setup-ubuntu.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

set -xe

Expand Down
2 changes: 2 additions & 0 deletions ci/setup.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

set -xe

# If running on Github actions, don't create a virtualenv
Expand Down