aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/make.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/rosa/make.go')
-rw-r--r--internal/rosa/make.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/rosa/make.go b/internal/rosa/make.go
index 5a7cc420..0c5a4982 100644
--- a/internal/rosa/make.go
+++ b/internal/rosa/make.go
@@ -185,7 +185,7 @@ func (attr *MakeHelper) script(name string) string {
scriptMake := `
make \
- "-j$(nproc)"`
+ ` + jobsFlagE
if len(attr.Make) > 0 {
scriptMake += " \\\n\t" + strings.Join(attr.Make, " \\\n\t")
}
@@ -193,7 +193,7 @@ make \
if !attr.SkipCheck {
scriptMake += attr.ScriptCheckEarly + `make \
- "-j$(nproc)" \
+ ` + jobsFlagE + ` \
`
if len(attr.Check) > 0 {
scriptMake += strings.Join(attr.Check, " \\\n\t")