Error when Comment at the end of sql file

When add any comments to the end of sql file liquibase raises an error.
Everything is ok in any other places.
What are we doing wrong?
version 4.1.1 #10 built at 2020-10-12 19:24+0000
Starting Liquibase at 09:43:04 (version 4.1.1 #10 built at 2020-10-12 19:24+0000)
Unexpected error running Liquibase: Migration failed for change set 1000.file_name.sql::1::10000:
Reason: liquibase.exception.DatabaseException: Invalid SQL type: sqlKind = UNINITIALIZED [Failed SQL: (17439) – problem comment]
For more information, please use the --logLevel flag

–liquibase formatted sql
–changeset 1:10000 stripComments:false runOnChange:true endDelimiter:;
alter table SCHEMA_NAME.SOME_TABLE modify
“ANY_COLOMN” varchar2(60 char)
;
commit
;
– problem comment

Hi @BoSkH ,

I think the error is raised because liquibase is finding 2 ; in the changeset. Before and after commit. Could you try using some other endDelimiter than ;??