Skip to content

Commit

Permalink
Remove update flag from copy
Browse files Browse the repository at this point in the history
  • Loading branch information
MrS0m30n3 committed Dec 10, 2016
1 parent bd6e29b commit 5ec8307
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions devscripts/build_html_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ fi
read -p "Publish docs on Github pages? (y/n) " choice

if [[ $choice == 'y' || $choice == 'Y' ]]; then
cp -v -u "$BUILD_DIR/"*.html "$DOCS_PUBLIC"
cp -v -u "$BUILD_DIR/"*.js "$DOCS_PUBLIC"
cp -R -v -u "$BUILD_DIR/_static" "$DOCS_PUBLIC"
cp -v "$BUILD_DIR/"*.html "$DOCS_PUBLIC"
cp -v "$BUILD_DIR/"*.js "$DOCS_PUBLIC"
cp -R -v "$BUILD_DIR/_static" "$DOCS_PUBLIC"

read -p "Commit changes? (y/n) " choice

Expand Down

0 comments on commit 5ec8307

Please sign in to comment.