Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(makefile): pipe stderr to /dev/null #1001

Merged
merged 1 commit into from
Nov 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
.PHONY : docker-run docker-stop

SHELL := /bin/bash
VERSION := $(shell git describe)
VERSION ?= $(shell git describe 2> /dev/null)
#VERSION := v0.1.0 # for debugging updater

RFC_3339 := "+%Y-%m-%dT%H:%M:%SZ"
DATE := $(shell date -u $(RFC_3339))
COMMIT := $(shell git rev-list -1 HEAD)
COMMIT ?= $(shell git rev-list -1 HEAD 2> /dev/null)
BRANCH := latest

PROJECT_BASE := github.com/skycoin/skywire
Expand Down Expand Up @@ -148,7 +148,7 @@ build-deploy: ## Build for deployment Docker images
${OPTS} go build ${BUILD_OPTS_DEPLOY} -o /release/apps/skysocks ./cmd/apps/skysocks
${OPTS} go build ${BUILD_OPTS_DEPLOY} -o /release/apps/skysocks-client ./cmd/apps/skysocks-client

github-release:
github-release:
goreleaser --rm-dist

build-docker: ## Build docker image
Expand Down Expand Up @@ -180,7 +180,7 @@ deb-package: deb-install-prequisites ## Create unsigned application

deb-package-help: ## Show installer creation help
./scripts/deb_installer/package_deb.sh -h

mac-installer: ## Create signed and notarized application, run make mac-installer-help for more
./scripts/mac_installer/create_installer.sh -s -n

Expand Down