Fix misspellings
Signed-off-by: Dmitri Logvinenko <dmitri.logvinenko@gmail.com> Upstream-commit: 6dede879fd8e0c5f599631d125753d360ead3bc0 Component: engine
This commit is contained in:
@ -29,7 +29,7 @@ type mockCommand struct {
|
||||
}
|
||||
|
||||
// Output returns responses from the remote credentials helper.
|
||||
// It mocks those reponses based in the input in the mock.
|
||||
// It mocks those responses based in the input in the mock.
|
||||
func (m *mockCommand) Output() ([]byte, error) {
|
||||
in, err := ioutil.ReadAll(m.input)
|
||||
if err != nil {
|
||||
|
||||
@ -11,7 +11,7 @@ type Remote interface {
|
||||
Cleanup()
|
||||
}
|
||||
|
||||
// RemoteOption allows to configure paramters of remotes.
|
||||
// RemoteOption allows to configure parameters of remotes.
|
||||
// This is unused on Windows.
|
||||
type RemoteOption interface {
|
||||
Apply(Remote) error
|
||||
|
||||
@ -634,7 +634,7 @@ func TarWithOptions(srcPath string, options *TarOptions) (io.ReadCloser, error)
|
||||
|
||||
if err := ta.addTarFile(filePath, relFilePath); err != nil {
|
||||
logrus.Errorf("Can't add file %s to tar: %s", filePath, err)
|
||||
// if pipe is broken, stop writting tar stream to it
|
||||
// if pipe is broken, stop writing tar stream to it
|
||||
if err == io.ErrClosedPipe {
|
||||
return err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user