blob: d6012a60bc20a92e931e7cc58df1907ced366067 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
if [ "$2" != "INSTALL" ]; then
exit 0
fi
echo "***********************************************************"
echo "* W a r n i n g *"
echo "* This port will overwrite the existing tex installation. *"
echo "***********************************************************"
echo -n "Is this ok? (y/n) ==> "
read ans;
case x"$ans" in
xy*|xY*)
return 0;
;;
*)
echo "Okay, I won't install it then....";
return 1;
;;
esac
|