Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: pkg/analyzer/tool/generate_files

Issue 1552313002: Refs #25328 Use a portable shebang (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/analysis_server/tool/spec/generate_files ('k') | runtime/tools/bmu_benchmark_gallery.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/usr/bin/env bash
2 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file. 4 # BSD-style license that can be found in the LICENSE file.
5 # 5 #
6 # This script executes code generation tools found in the analyzer 6 # This script executes code generation tools found in the analyzer
7 # "tool" directory. 7 # "tool" directory.
8 8
9 set -e 9 set -e
10 10
11 function follow_links() { 11 function follow_links() {
(...skipping 30 matching lines...) Expand all
42 42
43 DART="${BIN_DIR}/dart" 43 DART="${BIN_DIR}/dart"
44 44
45 declare -a VM_OPTIONS 45 declare -a VM_OPTIONS
46 VM_OPTIONS+=("--checked") 46 VM_OPTIONS+=("--checked")
47 VM_OPTIONS+=("--package-root=${PKG_DIR}") 47 VM_OPTIONS+=("--package-root=${PKG_DIR}")
48 48
49 cd "${SCRIPT_DIR}" 49 cd "${SCRIPT_DIR}"
50 "${DART}" "${VM_OPTIONS[@]}" "task_dependency_graph/generate.dart" 50 "${DART}" "${VM_OPTIONS[@]}" "task_dependency_graph/generate.dart"
51 "${DART}" "${VM_OPTIONS[@]}" "summary/generate.dart" 51 "${DART}" "${VM_OPTIONS[@]}" "summary/generate.dart"
OLDNEW
« no previous file with comments | « pkg/analysis_server/tool/spec/generate_files ('k') | runtime/tools/bmu_benchmark_gallery.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698