This commit is contained in:
Giacomo Tesio 2019-11-13 18:22:42 +01:00
commit b0fa506226
5 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
third_party/pkg/
third_party/src/github.com/kr/
third_party/src/github.com/creack/
third_party/src/golang.org/
*.build.log

View File

@ -42,7 +42,7 @@ if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then
mv $JEHANNE/tmp/toolchain/* $JEHANNE/hacking/cross/toolchain/
else
echo "Creating cross-compiling toolchain..."
(cd $JEHANNE/hacking/cross/; ./init.sh; git clean -xdf $JEHANNE/hacking/cross/tmp $JEHANNE/hacking/cross/src/)
(cd $JEHANNE/hacking/cross/; ./init.sh; git clean -q -xdf $JEHANNE/hacking/cross/tmp $JEHANNE/hacking/cross/src/)
fi
fi

View File

@ -215,3 +215,4 @@ ln -sf /bin/bash $JEHANNE/hacking/cross/toolchain/bin/x86_64-jehanne-sh
kill $dotter
wait $dotter 2>/dev/null
echo "done."

@ -1 +1 @@
Subproject commit 699179a66987482b0156645ee6fc7ea318c40d01
Subproject commit fef060960822ab3d59c1b3d4125c7f33ace8217a

View File

@ -13,7 +13,7 @@ import (
"os"
"os/exec"
"strings"
"github.com/kr/pty"
"github.com/creack/pty"
"golang.org/x/crypto/ssh/terminal"
)