mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
18 lines
275 B
Bash
Executable file
18 lines
275 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# script/sort
|
|
# mas
|
|
#
|
|
# Invokes the sort.pl script on the Xcode project to organize project references.
|
|
#
|
|
|
|
main() {
|
|
echo "==> 📶 Sorting project files"
|
|
sort_project
|
|
}
|
|
|
|
sort_project() {
|
|
perl script/sort.pl mas-cli.xcodeproj/project.pbxproj
|
|
}
|
|
|
|
main
|