Skip to content

Commit

Permalink
Merge pull request #1217 from flexion/task/fixing_binbash
Browse files Browse the repository at this point in the history
making the bin/bash all consistent
  • Loading branch information
codyseibert authored Mar 26, 2019
2 parents 803c984 + b0e9d38 commit 6285fd2
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env groovy
#!/bin/bash groovy

pipeline {

Expand Down
2 changes: 1 addition & 1 deletion efcms-service/configure-custom-api-access-logging.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash

if [ "$#" -ne 3 ] || ! [ -f "$2" ]; then
echo "Usage: $0 [stage_name] [config_file_name] [region]" >&2
Expand Down
2 changes: 1 addition & 1 deletion efcms-service/deploy-sandbox.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
set -eo pipefail

function check_env_vars_exist() {
Expand Down
2 changes: 1 addition & 1 deletion efcms-service/terraform/bin/deploy-app.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash

ENVIRONMENT=$1

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

BASTION_PUBLIC_IP=$(terraform output bastion_public_ip)
JENKINS_PRIVATE_IP=$(terraform output jenkins_private_ip)
Expand Down
2 changes: 1 addition & 1 deletion management/bin/setup-jobs.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash

BASTION_PUBLIC_IP=$(terraform output bastion_public_ip)
JENKINS_PRIVATE_IP=$(terraform output jenkins_private_ip)
Expand Down
2 changes: 1 addition & 1 deletion management/management/deploy-infrastructure.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
. ./deploy-init.sh "$@"

TF_VAR_my_s3_state_bucket=${BUCKET} TF_VAR_my_s3_state_key=${KEY} terraform apply --var "dns_domain=${EFCMS_DOMAIN}"
2 changes: 1 addition & 1 deletion management/management/deploy-init.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash

. ./deploy-setup.sh "$@"

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

AUTO=false
ARG_OPTS=""
Expand Down
2 changes: 1 addition & 1 deletion web-client/terraform/bin/deploy-app.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash

ENVIRONMENT=$1

Expand Down

0 comments on commit 6285fd2

Please sign in to comment.