File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed
Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ func (r *Git) Validate() (err error) {
4444// Fetch clones the repository.
4545func (r * Git ) Fetch () (err error ) {
4646 url := r .URL ()
47+ addon .Activity ("[GIT] Home (directory): %s" , r .home ())
4748 addon .Activity ("[GIT] Cloning: %s" , url .String ())
4849 _ = nas .RmDir (r .Path )
4950 if r .Identity .ID != 0 {
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ func (r *Subversion) Validate() (err error) {
4949// Fetch clones the repository.
5050func (r * Subversion ) Fetch () (err error ) {
5151 u := r .URL ()
52+ addon .Activity ("[SVN] Home (directory): %s" , r .home ())
5253 addon .Activity ("[SVN] Cloning: %s" , u .String ())
5354 if r .Identity .ID != 0 {
5455 addon .Activity (
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ type Agent struct {
3333// Start the ssh-agent.
3434func (r * Agent ) Start () (err error ) {
3535 pid := os .Getpid ()
36+ addon .Activity ("[SSH] Home (directory): %s" , Dir )
3637 socket := fmt .Sprintf ("/tmp/agent.%d" , pid )
3738 cmd := command .New ("/usr/bin/ssh-agent" )
3839 cmd .Env = append (os .Environ (), "HOME=" + Dir )
You can’t perform that action at this time.
0 commit comments