We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the following bash can be used:
#!/bin/bash set -e GENERATED_FILE=generated.dart PREV_GENERATED_FILE=current-generated.dart cp $GENERATED_FILE $PREV_GENERATED_FILE bin/php-converter.phar --from=./src --to=./ --config=./config/php-converter/dart-config.php if diff -q $PREV_GENERATED_FILE $GENERATED_FILE; then echo "DTO ok" rm $PREV_GENERATED_FILE else echo "Dto mismatch" rm $PREV_GENERATED_FILE exit 1 fi
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the following bash can be used:
The text was updated successfully, but these errors were encountered: