This file contains hidden or 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
public class LocalDateDeSerializer extends StdDeserializer<LocalDate> { | |
public LocalDateDeSerializer() { | |
this(null); | |
} | |
public LocalDateDeSerializer(Class<?> vc) { | |
super(vc); | |
} |
This file contains hidden or 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
#!/bin/bash | |
for d in ./*/; | |
do ( | |
cd "$d" && | |
currentDir=`pwd` | |
echo "updating `basename "$currentDir"`..." | |
git pull | |
); | |
done |