Remove redundant --build-source flag from build steps

This commit is contained in:
netkas 2024-09-23 13:53:02 -04:00
parent 0c837c6b54
commit b5874371b1
2 changed files with 6 additions and 6 deletions

View file

@ -9,10 +9,10 @@ all: build
# Build Steps
build:
ncc build --config=$(CONFIG) --build-source --log-level $(LOG_LEVEL)
ncc build --config=$(CONFIG) --log-level $(LOG_LEVEL)
install:
ncc package install --package=$(PACKAGE) --skip-dependencies --reinstall -y --log-level $(LOG_LEVEL)
ncc package install --package=$(PACKAGE) --skip-dependencies --build-source --reinstall -y --log-level $(LOG_LEVEL)
clean:
rm -rf build