diff options
author | John Resig <jeresig@gmail.com> | 2006-08-14 03:54:44 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2006-08-14 03:54:44 +0000 |
commit | 269ff25860737c7bd86d451256886332263c07fd (patch) | |
tree | 25107eec2b5f91cadcfef236a53c02e9b2f49708 /Makefile | |
parent | 7e5a2bd738f9acff63e97c108be6768cf4a45531 (diff) | |
download | jquery-269ff25860737c7bd86d451256886332263c07fd.tar.gz jquery-269ff25860737c7bd86d451256886332263c07fd.zip |
Changed the -n flag of cp to -f, not equivalent, but it gets the job done.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -67,7 +67,7 @@ test: ${JQ} @@rm -f ${TEST_DIR}/tests/* @@echo " - Copying over script files." - @@cp -nR ${BUILD_DIR}/test/js ${TEST_DIR}/js + @@cp -fR ${BUILD_DIR}/test/js ${TEST_DIR}/js @@echo " - Compiling Test Cases" @@${JAR} ${BUILD_DIR}/test/test.js ${JQ} ${TEST_DIR} @@ -83,10 +83,10 @@ docs: ${JQ} @@mkdir -p ${DOCS_DIR}/data @@echo " - Copying over script files." - @@cp -nR ${BUILD_DIR}/docs/js ${DOCS_DIR}/js + @@cp -fR ${BUILD_DIR}/docs/js ${DOCS_DIR}/js @@echo " - Copying over style files." - @@cp -nR ${BUILD_DIR}/docs/style ${DOCS_DIR}/style + @@cp -fR ${BUILD_DIR}/docs/style ${DOCS_DIR}/style @@echo " - Extracting ScriptDoc from" ${JQ} @@${JAR} ${BUILD_DIR}/docs/docs.js ${JQ} ${DOCS_DIR} |