Skip to content

Commit

Permalink
[CHANGE] Xmo'd: change file ordering to human.m, human.h, machine.m, …
Browse files Browse the repository at this point in the history
…machine.h (from human.h, human.m, machine.h, machine.m).
  • Loading branch information
rentzsch committed Dec 29, 2009
1 parent 502c949 commit fb7eb17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Xmod/Xmod.applescript
Expand Up @@ -36,7 +36,7 @@ on updateProjectXmod(_project)
set humanSourceFileList to (every file of modelSrcDirAlias whose (name ends with ".m" or name ends with ".mm") and name does not start with "_")
set machineHeaderFileList to (every file of modelSrcDirAlias whose name ends with ".h" and name starts with "_")
set machineSourceFileList to (every file of modelSrcDirAlias whose (name ends with ".m" or name ends with ".mm") and name starts with "_")
set fileList to humanHeaderFileList & humanSourceFileList & machineHeaderFileList & machineSourceFileList
set fileList to humanSourceFileList & humanHeaderFileList & machineSourceFileList & machineHeaderFileList
set pathList to {}
repeat with fileItem in fileList
set pathList to pathList & POSIX path of fileItem
Expand Down

0 comments on commit fb7eb17

Please sign in to comment.