From 7f29b1487f1694b71f60e5b136892d2d1ef170a4 Mon Sep 17 00:00:00 2001 From: Chris Olszewski Date: Tue, 16 Apr 2024 12:51:03 -0700 Subject: [PATCH] chore(ci): move turbo build command into package.json --- cli/Makefile | 5 ----- cli/package.json | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/cli/Makefile b/cli/Makefile index fe2cf65449bc7..46e65f510c917 100644 --- a/cli/Makefile +++ b/cli/Makefile @@ -3,11 +3,6 @@ TURBO_TAG = $(shell cat ../version.txt | sed -n '2 p') CLI_DIR = $(shell pwd) -# We do not set go-turbo as a dependency because the Rust build.rs -# script will call it for us and copy over the binary -turbo: - cargo build -p turbo - .PHONY: install install: pnpm install diff --git a/cli/package.json b/cli/package.json index 7dd704dba7354..b06a1229ef812 100644 --- a/cli/package.json +++ b/cli/package.json @@ -4,7 +4,7 @@ "version": "0.0.0", "scripts": { "clean": "make clean", - "build": "make", + "build": "cargo build -p turbo", "build:release": "cargo build -p turbo --profile release-turborepo" } }