From e1946f1f686a35dad9771b07cc78a35b29d0b8e5 Mon Sep 17 00:00:00 2001 From: Ohad Rau Date: Tue, 3 Apr 2018 01:21:04 -0400 Subject: [PATCH] Fix absolute shebangs in install scripts (#16135) * Fix absolute shebang in /bin/flutter * Fix absolute shebang in bin/internal/update_dart_sdk.sh --- bin/flutter | 2 +- bin/internal/update_dart_sdk.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/flutter b/bin/flutter index 2ef55dbbb3..079c3f94d0 100755 --- a/bin/flutter +++ b/bin/flutter @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright 2015 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. diff --git a/bin/internal/update_dart_sdk.sh b/bin/internal/update_dart_sdk.sh index 7fdf325b30..7dd160df41 100755 --- a/bin/internal/update_dart_sdk.sh +++ b/bin/internal/update_dart_sdk.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright 2016 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file.