diff options
author | Chandan Singh <git@chandansingh.net> | 2018-02-17 01:19:04 +0000 |
---|---|---|
committer | Chandan Singh <git@chandansingh.net> | 2018-02-17 02:09:13 +0000 |
commit | 722045dbf335cae02ac203fc810933657b044662 (patch) | |
tree | f5d998ef534ad7e58d4b80289e2afba3e315dde8 /contrib | |
parent | 6458d77aa1d35a5dd648c3fe3f94836d2d9e6282 (diff) | |
download | buildstream-722045dbf335cae02ac203fc810933657b044662.tar.gz |
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
```
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/bst-here | 2 |
1 files changed, 1 insertions, 1 deletions
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 |