Revision d65db21976dd24415d338ec292e3ee0552e550b4 authored by Ben Laurie on 06 September 2013, 13:03:28 UTC, committed by Scott Deboy on 09 February 2014, 16:07:16 UTC
1 parent 8acf1ff
point.sh
#!/bin/sh
rm -f "$2"
if test "$OSTYPE" = msdosdjgpp || test "x$PLATFORM" = xmingw ; then
cp "$1" "$2"
else
ln -s "$1" "$2"
fi
echo "$2 => $1"

Computing file changes ...