1
0
mirror of https://github.com/taigrr/gopher-os synced 2025-01-18 04:43:13 -08:00

Set -o pipefail to catch go compilation errors

This commit is contained in:
Achilleas Anagnostopoulos 2017-03-23 08:51:32 +00:00 committed by GitHub
parent 95569d2982
commit 590d4f1363

View File

@ -7,7 +7,7 @@ kernel_target :=$(BUILD_DIR)/kernel-$(ARCH).bin
iso_target := $(BUILD_DIR)/kernel-$(ARCH).iso iso_target := $(BUILD_DIR)/kernel-$(ARCH).iso
ifeq ($(OS), Linux) ifeq ($(OS), Linux)
export SHELL := /bin/bash export SHELL := /bin/bash -o pipefail
LD := ld LD := ld
AS := nasm AS := nasm