From c939037f350fd1570f184670682eb50f40f7cb0c Mon Sep 17 00:00:00 2001 From: Aaron Kruglikov Date: Fri, 16 Jun 2017 13:20:42 -0700 Subject: [PATCH] Fixing an issue where the \'ok clean\' command can fail if there is another version of buck in the path. Change-Id: I93afcd6869634a88da045f4f81cc40e32160e117 --- tools/dev/bash_profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/dev/bash_profile b/tools/dev/bash_profile index 6308334d99..aa3aff588e 100644 --- a/tools/dev/bash_profile +++ b/tools/dev/bash_profile @@ -55,7 +55,7 @@ function o { # Short-hand for ONOS build, package and test. alias ob='onos-build' -alias obf='(cd $ONOS_ROOT && buck build onos)' +alias obf='(cd $ONOS_ROOT && onos-buck build onos)' alias obd='onos-build-docs' alias op='onos-package' alias ot='onos-test' @@ -64,7 +64,7 @@ alias deprecatedAlias='echo "This alias has been deprecated."' alias obi=deprecatedAlias alias obs=deprecatedAlias -alias ok='NO_BUCKD=1 buck run onos-local --' +alias ok='NO_BUCKD=1 onos-buck run onos-local --' alias oh='onos localhost halt' alias ol='onos-log'