Skip to content

Commit

Permalink
Specify bash as our shell
Browse files Browse the repository at this point in the history
In case the runner uses a different shell.
  • Loading branch information
justinsb committed Apr 24, 2019
1 parent 5d963ae commit 3d2bfae
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion artifactserver/tools/get_workspace_status.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Copyright 2018 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion dns/check-zone.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
#
# This runs as you. It assumes you have built an image named ${USER}/octodns.
# It also requires working gcloud credentials
Expand Down
2 changes: 1 addition & 1 deletion dns/push.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash

# This runs as you. It assumes you have built an image named ${USER}/octodns.

Expand Down
2 changes: 1 addition & 1 deletion k8s.gcr.io/ensure-prod-repo.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
#
# Copyright 2019 The Kubernetes Authors.
#
Expand Down
2 changes: 1 addition & 1 deletion k8s.gcr.io/ensure-staging-repo.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
#
# Copyright 2019 The Kubernetes Authors.
#
Expand Down
2 changes: 1 addition & 1 deletion k8s.gcr.io/lib.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
#
# Copyright 2019 The Kubernetes Authors.
#
Expand Down
2 changes: 1 addition & 1 deletion k8s.io/canary.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

set -o errexit
set -o nounset
Expand Down

0 comments on commit 3d2bfae

Please sign in to comment.