From be52d507d55b57558092533bf12df6503098f96b Mon Sep 17 00:00:00 2001 From: oblomov-dev <102328295+oblomov-dev@users.noreply.github.com> Date: Thu, 27 Feb 2025 10:48:32 -0500 Subject: [PATCH] fix auto_downport with abaplint 702 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 8f159b42..fa2d67d4 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "description": "Developing UI5 Apps Purely in ABAP.", "scripts": { "syfixes": "find . -type f -name '*.abap' -exec sed -i -e 's/ RAISE EXCEPTION TYPE cx_sy_itab_line_not_found/ ASSERT 1 = 0/g' {} + ", - "auto_downport": "abaplint --fix .github/abaplint/abap_702.jsonc && npm run syfixes && cp -r src node/downport", + "auto_downport": "abaplint --fix .github/abaplint/abap_702.jsonc && npm run syfixes && cp -r src node/downport && cp -i .github/abaplint/abap_702.jsonc abaplint.jsonc", "auto_app2abap": "node .github/app2abap/trans2abap.js", "auto_abaplint": "npx abaplint .github/abaplint/auto_abaplint_fix.jsonc --fix", "auto_transpile": "rm -rf node/output && cp node/srv/*.abap node/downport && abap_transpile ./node/setup/abap_transpile.json", @@ -43,4 +43,4 @@ "dependencies": { "npm-check-updates": "^17.1.14" } -} \ No newline at end of file +}