From 1ee0be421b538235fb55f7621f1c7860134220dc Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 28 Jun 2022 16:28:31 +0300 Subject: Don't read LICENSE and load module in root.build files in skeleton mode --- cli/build/root.build | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'cli') diff --git a/cli/build/root.build b/cli/build/root.build index 6132356..0753a9e 100644 --- a/cli/build/root.build +++ b/cli/build/root.build @@ -34,6 +34,7 @@ test.target = $cxx.target # # Note that cat is a builtin which means this is both portable and fast. # -copyright = $process.run_regex(cat $src_root/LICENSE, \ - 'Copyright \(c\) (.+)\.', \ - '\1') +if ($build.mode != 'skeleton') + copyright = $process.run_regex(cat $src_root/LICENSE, \ + 'Copyright \(c\) (.+)\.', \ + '\1') -- cgit v1.1