2 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 cd `dirname $0`/../source/data/coll
Mark Mentovai
2014/04/04 19:22:52
Backticks suck, use $(…) instead.
And you should
Backticks suck, use $(…) instead.
And you should be quoting more judiciously in shell scripts. This line should be
cd "$(dirname "$0"/../source/data/coll)"
There are a few other things that could be quoted a little bit better in the
other scripts too.
Issue 224943002: icu local change part1
(Closed)
Created 6 years, 8 months ago by jungshik at Google
Modified 6 years, 8 months ago
Reviewers: Mark Mentovai, jsbell
Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Comments: 23