aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2023-05-02 10:01:47 +0200
committerGitHub <[email protected]>2023-05-02 10:01:47 +0200
commit075d17f8ada47e990fe94606c3d21df409223465 (patch)
treee50549b766a2f3c354798a54ff73404217b4c9af /scripts
parentfix: bundle shouldn't append content zip to zen (diff)
downloadzen-075d17f8ada47e990fe94606c3d21df409223465.tar.xz
zen-075d17f8ada47e990fe94606c3d21df409223465.zip
moved source directories into `/src` (#264)
* moved source directories into `/src` * updated bundle.lua for new `src` path * moved some docs, icon * removed old test trees
Diffstat (limited to 'scripts')
-rw-r--r--scripts/bundle.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bundle.lua b/scripts/bundle.lua
index 6b9a0a81f..0d6ce04ad 100644
--- a/scripts/bundle.lua
+++ b/scripts/bundle.lua
@@ -157,7 +157,7 @@ end
--------------------------------------------------------------------------------
local function _append_content_zip(bin_path)
local zip_path = "build/frontend.zip"
- local content_dir = "zenserver/frontend/html/"
+ local content_dir = "src/zenserver/frontend/html/"
_zip(true, zip_path, content_dir)
zip_file = io.open(zip_path, "rb")