func UploadDirectoryToHttpResponseWriter(logger SimpleLogger, writer http.ResponseWriter, directoryPath string, walkContext *dirWalkContext) {
	if !osutils.DirectoryExists(directoryPath) {
		panic("Directory does not exist: " + directoryPath)
	}

	tarWriter := tar.NewWriter(writer)
	defer tarWriter.Close()

	addDirectoryToTarStream(tarWriter, directoryPath, walkContext, true)
}
func UploadDirectoryToUrl(logger SimpleLogger, url, bodyType, directoryPath string, walkContext *dirWalkContext, checkResponse func(resp *http.Response) error) {
	if !osutils.DirectoryExists(directoryPath) {
		panic("Directory does not exist: " + directoryPath)
	}

	pipeReader, pipeWriter := io.Pipe()
	tarWriter := tar.NewWriter(pipeWriter)

	wg := &sync.WaitGroup{}
	wg.Add(1)

	var goroutineErr error
	go func() {
		defer func() {
			if r := recover(); r != nil {
				goroutineErr = fmt.Errorf("Cannot add directory to tar stream, error: %+v", r)
			}
		}()

		addDirectoryToTarStream(tarWriter, directoryPath, walkContext, true)
		tarWriter.Close()
		pipeWriter.Close()

		wg.Done()
	}()

	resp, err := http.Post(url, bodyType, pipeReader)
	CheckError(err)
	resp.Body.Close()

	if checkResponse != nil {
		err := checkResponse(resp)
		CheckError(err)
	}

	wg.Wait()
	CheckError(goroutineErr)
}