10 lines
189 B
Bash
Executable File
10 lines
189 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -u
|
|
set -o pipefail
|
|
|
|
rm .github/CODEOWNERS
|
|
rm .github/workflows/security-code-scanner.yml
|
|
rm -f scripts/cleanup.sh
|
|
git commit -am "Clean up undesired MetaMask GitHub files"
|