From 722045dbf335cae02ac203fc810933657b044662 Mon Sep 17 00:00:00 2001 From: Chandan Singh Date: Sat, 17 Feb 2018 01:19:04 +0000 Subject: bst-here: fix path of bst binary As shown in the snippet below, the `bst` binary is installed at `/usr/local/bin/bst` in the current Docker image `buildstream/buildstream-fedora`, ``` $ docker run --rm buildstream/buildstream-fedora type -a bst bst is /usr/local/bin/bst ``` --- contrib/bst-here | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/bst-here b/contrib/bst-here index 153d520f7..b96b36cdc 100755 --- a/contrib/bst-here +++ b/contrib/bst-here @@ -61,7 +61,7 @@ BST_HERE_PS1="\[\033[01;34m\]\w\[\033[00m\]> " if [ "$#" -eq 0 ]; then command="/bin/bash -i" else - command="/usr/bin/bst $@" + command="/usr/local/bin/bst $@" fi # FIXME: We run with --privileged to allow bwrap to mount system -- cgit v1.2.1