mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00
Merge pull request #1330 from gregorwolf/master
Add "you might switch to FULL folder logic" to error message
This commit is contained in:
commit
36de33f3e3
|
@ -52,7 +52,8 @@ CLASS zcl_abapgit_object_suso IMPLEMENTATION.
|
|||
WHERE object = ms_item-obj_name
|
||||
AND langu = mv_language. "#EC CI_GENBUFF
|
||||
IF sy-subrc <> 0.
|
||||
zcx_abapgit_exception=>raise( 'TOBJT no english description' ).
|
||||
zcx_abapgit_exception=>raise( 'TOBJT no english description'
|
||||
&& ' for object (' && ms_item-obj_name && ')' ).
|
||||
ENDIF.
|
||||
|
||||
SELECT SINGLE * FROM tobjvorflg INTO ls_tobjvorflg
|
||||
|
|
|
@ -58,7 +58,8 @@ CLASS ZCL_ABAPGIT_FOLDER_LOGIC IMPLEMENTATION.
|
|||
* if abapGit project is installed in package ZZZ, all subpackages should be named
|
||||
* ZZZ_something. This will define the folder name in the zip file to be "something",
|
||||
* similarily with online projects. Alternatively change to FULL folder logic
|
||||
lv_message = 'PREFIX: Unexpected package naming(' && iv_package && ')' ##no_text.
|
||||
lv_message = 'PREFIX: Unexpected package naming (' && iv_package && ')'
|
||||
&& 'you might switch to FULL folder logic' ##no_text.
|
||||
zcx_abapgit_exception=>raise( lv_message ).
|
||||
ENDIF.
|
||||
WHEN OTHERS.
|
||||
|
|
Loading…
Reference in New Issue
Block a user