mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-25 03:35:21 +01:00
For some reason this script hangs on bzip2 presence checking (#15647)
Steps to reproduce: Clone repo from master branch Run: make install COMPILETAG=compile_golangimage Wait until script will check that bzip2 is installed Signed-off-by: YuriiPaneiko <yurapaneyko@gmail.com>
This commit is contained in:
parent
76733d72be
commit
be1e762b70
@ -12,7 +12,7 @@ function checkdep {
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! bzip2 --version &> /dev/null
|
||||
if ! [ -x "$(command -v bzip2)" ]
|
||||
then
|
||||
echo "Need to install bzip2 first and run this script again."
|
||||
exit 1
|
||||
|
Loading…
Reference in New Issue
Block a user