alarm/fake-hwclock: Remove extraneous newlines

This commit is contained in:
omor1 2013-12-22 15:22:00 -07:00
parent 22f8f802ec
commit 8a57a13047

View file

@ -3,13 +3,13 @@
MYSELF=$0
setclock() {
echo "Setting hardware clock \n"
echo "Setting clock."
MYTIME=$(date -r $MYSELF '+%Y-%m-%d %r')
date --set="$MYTIME" &>/dev/null
}
saveclock() {
echo "Saving current time \n"
echo "Saving current time."
touch $MYSELF &>/dev/null
}