diff options
-rw-r--r-- | .github/workflows/git.yml | 2 | ||||
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | Makefile | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/git.yml b/.github/workflows/git.yml index 3a40c0c..638f9bd 100644 --- a/.github/workflows/git.yml +++ b/.github/workflows/git.yml @@ -25,7 +25,7 @@ jobs: uses: actions/checkout@v3 - name: Install build dependencies - run: sudo apt-get install gettext + run: sudo apt-get install gettext libcurl4-openssl-dev - name: Git Build run: make build-git @@ -2,4 +2,5 @@ coverage.out *~ coverage.txt profile.out -.tmp/
\ No newline at end of file +.tmp/ +.git-dist/ @@ -41,4 +41,4 @@ test-coverage: $(GOTEST) -coverprofile=$(COVERAGE_REPORT) -coverpkg=./... -covermode=$(COVERAGE_MODE) ./... clean: - rm -rf $(GIT_DIST_PATH)
\ No newline at end of file + rm -rf $(GIT_DIST_PATH) |