Skip to content
New issue

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

Add output to file option #44

Merged
merged 10 commits into from
Mar 7, 2024
Prev Previous commit
Next Next commit
improved exclude-element check
  • Loading branch information
g-getsov committed Mar 3, 2024
commit c383abaea47138068246d94d74ab9a63d55c8c1d
2 changes: 1 addition & 1 deletion breaking/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ fi
if [ -n "$deprecation_days_stable" ]; then
flags="${flags} --deprecation-days-stable $deprecation_days_stable"
fi
if [ "$exclude_elements" != "" ]; then
if [ -n "$exclude_elements" ]; then
flags="${flags} --exclude-elements ${exclude_elements}"
fi
echo "flags: $flags"
2 changes: 1 addition & 1 deletion changelog/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ flags=""
if [ "$include_path_params" = "true" ]; then
flags="${flags} --include-path-params"
fi
if [ "$exclude_elements" != "" ]; then
if [ -n "$exclude_elements" ]; then
flags="${flags} --exclude-elements ${exclude_elements}"
fi
echo "flags: $flags"
2 changes: 1 addition & 1 deletion diff/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ fi
if [ "$include_path_params" = "true" ]; then
flags="${flags} --include-path-params"
fi
if [ "$exclude_elements" != "" ]; then
if [ -n "$exclude_elements" ]; then
flags="${flags} --exclude-elements ${exclude_elements}"
fi
echo "flags: $flags"