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

Unified Diff: build/linux/sysroot_scripts/sysroot-creator-wheezy.sh

Issue 2567123002: Sysroot: Add build_and_upload.py (Closed)
Patch Set: Return non-zero exit code if any sysroot builds failed Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/linux/sysroot_scripts/sysroot-creator-trusty.sh ('k') | build/linux/sysroot_scripts/sysroots.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/sysroot_scripts/sysroot-creator-wheezy.sh
diff --git a/build/linux/sysroot_scripts/sysroot-creator-wheezy.sh b/build/linux/sysroot_scripts/sysroot-creator-wheezy.sh
index 1d7c2bff7939003ccf9786e5fb1c676f44dcde56..6a8a0577082a1ffeaebed36e3df29b3765116cb6 100755
--- a/build/linux/sysroot_scripts/sysroot-creator-wheezy.sh
+++ b/build/linux/sysroot_scripts/sysroot-creator-wheezy.sh
@@ -3,14 +3,14 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-SCRIPT_DIR=$(cd $(dirname $0) && pwd)
+SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
DISTRO=debian
DIST=wheezy
DIST_UPDATES=wheezy-updates
APT_REPO=http://http.us.debian.org/debian
-KEYRING_FILE=${SCRIPT_DIR}/debian-archive-wheezy-stable.gpg
+KEYRING_FILE="${SCRIPT_DIR}/debian-archive-wheezy-stable.gpg"
HAS_ARCH_AMD64=1
HAS_ARCH_I386=1
@@ -203,4 +203,4 @@ DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1"
DEBIAN_PACKAGES_ARM="libdrm-omap1"
DEBIAN_PACKAGES_AMD64=""
-. ${SCRIPT_DIR}/sysroot-creator.sh
+. "${SCRIPT_DIR}/sysroot-creator.sh"
« no previous file with comments | « build/linux/sysroot_scripts/sysroot-creator-trusty.sh ('k') | build/linux/sysroot_scripts/sysroots.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698