diff options
| author | Stefan Boberg <[email protected]> | 2023-05-02 10:01:47 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-02 10:01:47 +0200 |
| commit | 075d17f8ada47e990fe94606c3d21df409223465 (patch) | |
| tree | e50549b766a2f3c354798a54ff73404217b4c9af /scripts | |
| parent | fix: bundle shouldn't append content zip to zen (diff) | |
| download | zen-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.lua | 2 |
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") |