2013-05-30 18:47:47 -04:00
|
|
|
#!/bin/bash
|
2011-06-25 16:34:59 -04:00
|
|
|
|
2013-01-28 21:03:27 -05:00
|
|
|
# Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
|
|
|
|
# http://paperjs.org/
|
2011-06-12 13:55:29 -04:00
|
|
|
#
|
2013-01-28 21:03:27 -05:00
|
|
|
# Copyright (c) 2011 - 2013, Juerg Lehni & Jonathan Puckey
|
2011-06-12 13:55:29 -04:00
|
|
|
# http://lehni.org/ & http://jonathanpuckey.com/
|
|
|
|
#
|
2011-07-01 06:17:45 -04:00
|
|
|
# Distributed under the MIT license. See LICENSE file for details.
|
|
|
|
#
|
|
|
|
# All rights reserved.
|
2011-06-12 13:55:29 -04:00
|
|
|
|
2013-06-27 06:21:56 -04:00
|
|
|
# This script simply copies src/load.js to dist/paper.js to, which loads the
|
|
|
|
# library from separate sources through PrePro.
|
2011-06-12 13:55:29 -04:00
|
|
|
|
2013-06-26 22:22:38 -04:00
|
|
|
if [ -f ../dist/paper.js ]
|
|
|
|
then
|
|
|
|
rm ../dist/paper.js
|
|
|
|
fi
|
2013-06-27 06:20:45 -04:00
|
|
|
cp ../src/load.js ../dist/paper.js
|