Allow staging for empty repositories (#6981)
Some checks failed
main-build / build-merged (push) Has been cancelled
main-build / auto-tag (push) Has been cancelled
main-build / coverage (push) Has been cancelled
main-build / auto-tag-artifact (push) Has been cancelled
ajson mirror / pr_ajson_changes (push) Has been cancelled

This commit is contained in:
Marc Bernard 2024-07-14 09:04:10 -04:00 committed by GitHub
parent faac8542e4
commit 872ed2758f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,6 +37,8 @@ CLASS zcl_abapgit_repo_online DEFINITION
REDEFINITION .
METHODS zif_abapgit_repo~get_name
REDEFINITION .
METHODS zif_abapgit_repo~has_remote_source
REDEFINITION .
PROTECTED SECTION.
PRIVATE SECTION.
@ -386,4 +388,9 @@ CLASS zcl_abapgit_repo_online IMPLEMENTATION.
ENDTRY.
ENDIF.
ENDMETHOD.
METHOD zif_abapgit_repo~has_remote_source.
rv_yes = abap_true.
ENDMETHOD.
ENDCLASS.