remove '-r' from compiler's option

Signed-off-by: hufeng <hufeng20@huawei.com>
Change-Id: I684f695bb8df7fc940523b8e1ee59ea0f716a886
This commit is contained in:
hufeng
2022-03-02 14:29:42 +08:00
parent 773e3bc16a
commit aa226e9ff9
+2 -2
View File
@@ -97,9 +97,9 @@ function mkDir(path_) {
}
function js2abcFirst(inputPath) {
let param = '-r';
let param = '';
if (isDebug) {
param += ' --debug';
param += '--debug';
}
let js2abc = path.join(arkDir, 'build', 'src', 'index.js');