diff --git a/ssh/ssh.go b/ssh/ssh.go index a552473..3ef88c9 100644 --- a/ssh/ssh.go +++ b/ssh/ssh.go @@ -8,6 +8,7 @@ import ( "net" "os" "os/user" + "path" "strings" "gitea.meta-tech.academy/go/core/echo" @@ -121,6 +122,9 @@ func (s *Ssh) Scp() *sftp.Client { type ApplyOnSize func(s *Ssh, size int64) func (s *Ssh) DownloadFile(remoteFile string, localFile string, display bool, close bool, fn ...ApplyOnSize) bool { + if display { + echo.Action("Downloading docker image", path.Base(remoteFile)) + } done := false alreadyDownload := false checksum := ""