From c552d373ca146c2cdd2263777f7c6913875b4602 Mon Sep 17 00:00:00 2001 From: Francesco Abbate Date: Tue, 10 Aug 2021 11:12:47 +0200 Subject: [PATCH] Fix run-local script to copy generated start.lua Now the file data/core/start.lua no longer exists but it is automatically generated by meson. Ensure the file is copied when running locally. --- scripts/run-local | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/run-local b/scripts/run-local index d5de23aa..7f8d7034 100755 --- a/scripts/run-local +++ b/scripts/run-local @@ -75,6 +75,8 @@ copy_lite_build () { else cp "$builddir/src/lite-xl" "$bindir" fi + mkdir -p "$datadir/core" + cp "$builddir/start.lua" "$datadir/core" for module_name in core plugins colors fonts; do cp -r "data/$module_name" "$datadir" done