Commit 81980fb5 authored by Daniel Hochman's avatar Daniel Hochman
Browse files

handle CDPATH edge case

No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -3,8 +3,8 @@ SHELL:=/usr/bin/env bash
MAKEFLAGS += --no-print-directory
PRIMARY_MODULE_DIR := $(shell cd backend && go list -f "{{ "{{" }} .Dir {{ "}}" }}" -m "github.com/lyft/clutch/backend")
TOOLS_MODULE_DIR := $(shell cd backend && go list -f "{{ "{{" }} .Dir {{ "}}" }}" -m "github.com/lyft/clutch/tools")
PRIMARY_MODULE_DIR := $(shell cd backend 2>&1 > /dev/null && go list -f "{{ "{{" }} .Dir {{ "}}" }}" -m "github.com/lyft/clutch/backend")
TOOLS_MODULE_DIR := $(shell cd backend 2>&1 > /dev/null && go list -f "{{ "{{" }} .Dir {{ "}}" }}" -m "github.com/lyft/clutch/tools")
MY_ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
YARN:=./build/bin/yarn.sh
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment