Commit 1ffb22d0 by Andrew Nesbitt

Fixed cp argument order in prepublish script

parent 6e6684a5
......@@ -6,7 +6,7 @@ if [ "$CI" == "true" ]; then
echo "Skipping prepublish on CI builds";
elif [ -d "$DIRECTORY" ]; then
echo "Copying binaries to bin"
cp $DIRECTORY/*-v8-* bin/ -R
cp -R $DIRECTORY/*-v8-* bin/
else
echo "Skipping bin copy. Please clone https://github.com/andrew/node-sass-binaries for prebuilt binaries";
fi
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment