Verified Commit 544bb4fe authored by Xueshan Feng's avatar Xueshan Feng
Browse files

tidy up format.

parent 3f024dae
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
#!/bin/sh
## Ask to confirm an action
echo "$*"
echo "CONTINUE? [Y/N]: "; read ANSWER; \
if [ ! "$ANSWER" = "Y" ]; then \
    echo "Exiting." ; exit 1 ; \
echo "CONTINUE? [Y/N]: "
read ANSWER
if [ ! "$ANSWER" = "Y" ]
then
    echo "Exiting."
    exit 1
fi
exit 0