Created
May 31, 2011 23:11
-
-
Save beatak/1001472 to your computer and use it in GitHub Desktop.
this would make me feel better when I type it wrong
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/build.xml b/build.xml | |
--- a/build.xml | |
+++ b/build.xml | |
@@ -XXXX,6 +XXXX,18 @@ | |
+ <!-- joke --> | |
+ <condition property="japanese_people"> | |
+ <equals arg1="takashi" arg2="${user.name}" /> | |
+ </condition> | |
+ <target name="jap-selfhater" if="japanese_people"> | |
+ <echo>Don't be a self-hater</echo> | |
+ </target> | |
+ <target name="jap-racist" unless="japanese_people"> | |
+ <echo>Don't be a racist</echo> | |
+ </target> | |
+ <target name="jap" depends="jap-selfhater,jap-racist" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment