Skip to content

Commit

Permalink
Merge pull request kubernetes#5478 from kampka/bash-shebangs
Browse files Browse the repository at this point in the history
Use portable shebang for hack scripts
k8s-ci-robot authored Jul 20, 2018
2 parents 61fe862 + 2c104e2 commit 28118f3
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion hack/common.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Copyright 2016 The Kubernetes Authors.
#
2 changes: 1 addition & 1 deletion hack/dev-build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Copyright 2017 The Kubernetes Authors.
#
2 changes: 1 addition & 1 deletion hack/make-apimachinery.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Copyright 2016 The Kubernetes Authors.
#
2 changes: 1 addition & 1 deletion hack/make-gendocs.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Copyright 2016 The Kubernetes Authors.
#
2 changes: 1 addition & 1 deletion hack/new-iam-user.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Copyright 2017 The Kubernetes Authors.
#
2 changes: 1 addition & 1 deletion hack/update-header.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Copyright 2016 The Kubernetes Authors.
#
2 changes: 1 addition & 1 deletion hack/verify-boilerplate.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Copyright 2014 The Kubernetes Authors.
#
2 changes: 1 addition & 1 deletion hack/verify-gofmt.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Copyright 2016 The Kubernetes Authors.
#
2 changes: 1 addition & 1 deletion hack/verify-packages.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Copyright 2016 The Kubernetes Authors.
#

0 comments on commit 28118f3

Please sign in to comment.