mirror of
https://github.com/mas-cli/mas
synced 2024-11-21 19:23:01 +00:00
14 lines
312 B
Bash
Executable file
14 lines
312 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# script/brew_release_validate
|
|
# mas
|
|
#
|
|
# Validates the mas formula
|
|
# https://github.com/Homebrew/homebrew-core/blob/master/CONTRIBUTING.md#to-contribute-a-fix-to-the-foo-formula
|
|
#
|
|
|
|
brew uninstall --force mas
|
|
brew install --build-from-source mas
|
|
brew test mas
|
|
brew audit --strict mas
|
|
brew style mas
|