mas/script/sort

19 lines
269 B
Text
Raw Normal View History

2015-08-21 12:41:03 +00:00
#!/bin/bash
#
# script/sort
# mas
#
# Invokes the sort.pl script on the Xcode project to organize project references.
#
2015-08-21 12:41:03 +00:00
main() {
2021-03-21 23:50:09 +00:00
echo "==> 📶 Sorting project files"
sort_project
2015-08-21 12:41:03 +00:00
}
sort_project() {
2021-03-21 23:50:09 +00:00
perl script/sort.pl mas-cli.xcodeproj/project.pbxproj
2015-08-21 12:41:03 +00:00
}
main