mas/script/sort

19 lines
275 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() {
echo "==> 📶 Sorting project files"
2015-08-21 12:41:03 +00:00
sort_project
}
sort_project() {
2015-08-21 12:41:03 +00:00
perl script/sort.pl mas-cli.xcodeproj/project.pbxproj
}
main