From d0982bdc2d2bb4a6609aeb2267095157cad1144a Mon Sep 17 00:00:00 2001 From: Gilbert Date: Sun, 8 Jan 2023 09:24:55 +0300 Subject: [PATCH] fix: remove double && on script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 04ce51c..1885403 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "src/pages/index.tsx", "scripts": { "build:dev": "export NEXT_PUBLIC_GIT_HASH=$(git rev-parse HEAD) && next", - "build:prod": "npm run lint && && export NEXT_PUBLIC_GIT_HASH=$(git rev-parse HEAD) && next build && next export -o build/", + "build:prod": "npm run lint && export NEXT_PUBLIC_GIT_HASH=$(git rev-parse HEAD) && next build && next export -o build/", "start": "next start", "lint": "next lint", "zip:assets": "zip -qr build.zip ./build",