Commit 722045db authored by Chandan Singh's avatar Chandan Singh
Browse files

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
```
parent 6458d77a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -61,7 +61,7 @@ BST_HERE_PS1="\[\033[01;34m\]\w\[\033[00m\]> "
if [ "$#" -eq 0 ]; then
if [ "$#" -eq 0 ]; then
    command="/bin/bash -i"
    command="/bin/bash -i"
else
else
    command="/usr/bin/bst $@"
    command="/usr/local/bin/bst $@"
fi
fi


# FIXME: We run with --privileged to allow bwrap to mount system
# FIXME: We run with --privileged to allow bwrap to mount system