From 265da39d4ea4941d992f061b1833ae75ae561068 Mon Sep 17 00:00:00 2001 From: Aditya Thakral Date: Sat, 30 Oct 2021 16:55:49 -0700 Subject: [PATCH] Set USE_LDAP=true --- index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.ts b/index.ts index a1d0a7e..e97ed50 100644 --- a/index.ts +++ b/index.ts @@ -91,7 +91,9 @@ function updateWebsite(branch: string) { repo_$(`git checkout ${branch}`); repo_$(`npm install`); - repo_$(`NEXT_PUBLIC_BASE_PATH="/~${USER}/csc/${branch}" npm run build`); + repo_$( + `USE_LDAP=true NEXT_PUBLIC_BASE_PATH="/~${USER}/csc/${branch}" npm run build`, + ); repo_$(`npm run export`); const finalDir = path.join(WWW_DIR, branch);