From de836760c4507d7b624224adb6c3a5b54ed29644 Mon Sep 17 00:00:00 2001 From: Luoyy <10894778+zishang520@users.noreply.github.com> Date: Mon, 28 Jul 2025 18:04:11 +0800 Subject: [PATCH] Update gulpfile.js Fix the path issue on Linux. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index fb36e81e..ca42154a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -18,7 +18,7 @@ import GlobalsPlugin from 'esbuild-plugin-globals' import shell from 'shelljs' import chalk from 'chalk' -const cesium_path = path.resolve('./node_modules/cesium/build/Cesium') +const cesium_path = path.resolve('./node_modules/cesium/Build/Cesium') const packageJson = fse.readJsonSync('./package.json')