func()

in fast-build-update-tool/internal/tools/ssh_enabler.go [76:88]


func (s *SSHEnabler) Validate() error {
	// Verify we have the AWS CLI in the path
	if err := verifyExe(awsCommand); err != nil {
		return err
	}

	// Verify we have the session manager plugin in the path
	if err := verifyExe(sessionManagerCommand); err != nil {
		return err
	}

	return nil
}