We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07f6712 commit e948a70Copy full SHA for e948a70
bin/pkg
@@ -5,7 +5,7 @@ set -e
5
if test -z "$1"; then
6
echo available commands:
7
echo
8
- ls bin | grep -E '^pkg-[^[:space:]]+$' | sed 's/^pkg-/pkg /'
+ find bin -type f | sed -ne 's/^pkg-/pkg /p'
9
exit 1
10
fi
11
bin/pkg-docker
@@ -32,6 +32,8 @@ else
32
ADDARGS="$ADDARGS"" --interactive --tty --workdir /root/pantry"
33
34
35
+docker image pull teaxyz/cli
36
+
37
docker run \
38
--name brewkit.tea.xyz \
39
--rm \
0 commit comments