Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Clutch
Commits
81980fb5
Commit
81980fb5
authored
3 years ago
by
Daniel Hochman
Browse files
Options
Download
Email Patches
Plain Diff
handle CDPATH edge case
parent
3c1a9cd9
CDPATH-edge-case
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/scaffolding/templates/gateway/Makefile
+2
-2
tools/scaffolding/templates/gateway/Makefile
with
2 additions
and
2 deletions
+2
-2
tools/scaffolding/templates/gateway/Makefile
+
2
-
2
View file @
81980fb5
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help