From aea2d31bf9c505797b619183165711813e70f808 Mon Sep 17 00:00:00 2001 From: jady3356 Date: Tue, 23 Mar 2021 19:07:51 +0800 Subject: [PATCH] Set gn script executable to python3. --- hb/build/build_process.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hb/build/build_process.py b/hb/build/build_process.py index 71679ed..53fbb49 100755 --- a/hb/build/build_process.py +++ b/hb/build/build_process.py @@ -141,6 +141,7 @@ class Build(): self.config.out_path, '--root={}'.format(self.config.root_path), '--dotfile={}/.gn'.format(self.config.build_path), + '--script-executable=python3', '--args={}'.format(" ".join(self._args_list))] + gn_args exec_command(gn_cmd, log_path=self.config.log_path) -- GitLab