mirror of
https://github.com/mas-cli/mas
synced 2024-11-21 19:23:01 +00:00
12 lines
199 B
Bash
Executable file
12 lines
199 B
Bash
Executable file
#!/bin/bash -e
|
|
#
|
|
# script/danger
|
|
# mas
|
|
#
|
|
# Invokes the danger gem through bundler for automated PR review.
|
|
# https://danger.systems/
|
|
#
|
|
|
|
echo "==> ⚠️ Running danger"
|
|
|
|
bundle exec danger --verbose
|