1 files changed, 2 insertions(+), 2 deletions(-)
M build.sh
M build.sh => build.sh +2 -2
@@ 24,8 24,8 @@ gen() {
dst="pub/$file"
if [ "$src" -nt "$dst" ]
then
- echo "Copying $src to $dst"
- cp "$src" "$dst"
+ echo "Linking $src to $dst"
+ ln "$src" "$dst"
fi
fi
done