mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 11:33:13 +00:00
12 lines
167 B
Bash
Executable file
12 lines
167 B
Bash
Executable file
#!/bin/bash
|
|
|
|
main() {
|
|
echo "==> 📶 Sorting project files"
|
|
sort_project
|
|
}
|
|
|
|
sort_project() {
|
|
perl script/sort.pl mas-cli.xcodeproj/project.pbxproj
|
|
}
|
|
|
|
main
|