From ad53668be0e9ecc931f301c37c02416d419f3e3a Mon Sep 17 00:00:00 2001 From: Srujan Gaddam Date: Fri, 29 May 2020 22:57:27 +0000 Subject: [PATCH] Force copy_dart.py to use python2.7 Default `python` installation has been switched to python3.7 on Mac. copy_dart.py has not been migrated and therefore should stay as 2.7. Change-Id: I33991e01850e65f33987a278545babb1f905a94d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/149523 Reviewed-by: Stephen Adams Commit-Queue: Stephen Adams Auto-Submit: Srujan Gaddam --- tools/copy_dart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/copy_dart.py b/tools/copy_dart.py index 059b85b69e0..dbb7ecf33e7 100755 --- a/tools/copy_dart.py +++ b/tools/copy_dart.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python2.7 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file.