Skip to content

Commit

Permalink
Update interpreter on all scripts to Bash
Browse files Browse the repository at this point in the history
  • Loading branch information
pietrocaselani committed Apr 19, 2019
1 parent 4ab6149 commit 14153b5
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build_phases/swiftformat
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

swiftformat --indent 2 CouchTracker/
swiftformat --indent 2 CouchTrackerApp/
Expand Down
2 changes: 1 addition & 1 deletion ci/master.sh
@@ -1,3 +1,3 @@
#!/bin/bash
#!/usr/bin/env bash

bundle exec fastlane beta
4 changes: 2 additions & 2 deletions ci/pull_request.sh
@@ -1,3 +1,3 @@
#!/bin/bash
#!/usr/bin/env bash

bundle exec fastlane lint
bundle exec fastlane lint
2 changes: 1 addition & 1 deletion ci/travis.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
echo "Running pull_request.sh"
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_secrets
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

SCRIPTS_DIR=$(cd "$(dirname "$0")" || exit 1; pwd)
SECRETS_FILE="${SCRIPTS_DIR}/../CouchTrackerApp/Utils/Secrets.swift"
Expand Down
2 changes: 1 addition & 1 deletion scripts/update_translations
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

SCRIPTS_DIR=$(cd "$(dirname "$0")" || exit 1; pwd)
COUCH_TRACKER_CORE_DIR=$(cd "$SCRIPTS_DIR"/../CouchTrackerCore || exit 1; pwd)
Expand Down
2 changes: 1 addition & 1 deletion setup.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

function clone_dependency() {
if [ ! -d "vendor/$1" ]; then
Expand Down

0 comments on commit 14153b5

Please sign in to comment.