From 230883f9eca4c6765831125b7984597aa945ef93 Mon Sep 17 00:00:00 2001 From: Mandeep Singh Baines Date: Fri, 25 Mar 2011 15:37:43 -0700 Subject: [PATCH] cros_workon: fix common.sh check Error message not necessary since you already get an error message from bash. BUG=none TEST=see below $ ./cros_workon ./cros_workon: line 13: /usr/lib/crosutils/common.sh: No such file or directory $ ./cros_workon_make ./cros_workon_make: line 10: /usr/lib/crosutils/common.sh: No such file or directory Change-Id: I2087d77876376af9ccb497d0a67c354af281c007 R=petkov@chromium.org,anush@chromium.org Review URL: http://codereview.chromium.org/6726039 --- cros_workon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cros_workon b/cros_workon index d991356c55..fc1c365ba8 100755 --- a/cros_workon +++ b/cros_workon @@ -10,7 +10,7 @@ # is intended to support development. The current source tip is fetched, # source modified and built using the unstable 'live' (9999) ebuild. -. /usr/lib/crosutils/common.sh || (echo "Unable to load common.sh" && exit 1) +. /usr/lib/crosutils/common.sh || exit 1 # Script must be run inside the chroot get_default_board