I created a cmd file with these 3 commands, but only the first is executed…
liquibase --outputFile=test_snapshot.json snapshot --url=jdbc:postgresql://192.168.2.243:5432/test
liquibase diffChangeLog --url=jdbc:postgresql://192.168.2.243:5432/test1 --referenceUrl=offline:postgresql?snapshot=test_snapshot.json
liquibase --url=jdbc:postgresql://192.168.2.243:5432/test1 update
and other two rows are not executed even if the first command didn’t fail
Why ?
Thanks