Skip to content

Commit

Permalink
Export the source using a shell script phase, only run during install.
Browse files Browse the repository at this point in the history
  • Loading branch information
nygard committed Nov 5, 2007
1 parent 79261d9 commit 32346d0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions class-dump.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -640,6 +640,7 @@
buildPhases = (
8DD76F990486AA7600D96B5E /* Sources */,
8DD76F9B0486AA7600D96B5E /* Frameworks */,
01C5227A0CDFA45000948C19 /* ShellScript */,
);
buildRules = (
);
Expand Down Expand Up @@ -759,6 +760,19 @@
shellPath = /bin/sh;
shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
};
01C5227A0CDFA45000948C19 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 8;
files = (
);
inputPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 1;
shellPath = /bin/zsh;
shellScript = "#!/bin/zsh\n\necho \"pwd:\" `pwd`\necho svn export . $DSTROOT/src\n\npushd $DSTROOT/src\nmv README ..\nrm -rf hold notes TODO keys.txt BuildRelease.class-dump\npopd\n";
};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
Expand Down

0 comments on commit 32346d0

Please sign in to comment.