mirror of
https://github.com/nasa/fpp.git
synced 2025-12-15 12:58:25 -06:00
17 lines
376 B
Plaintext
17 lines
376 B
Plaintext
#!/bin/sh -e
|
|
|
|
# ----------------------------------------------------------------------
|
|
# refresh.do
|
|
# Refresh docs
|
|
# ----------------------------------------------------------------------
|
|
|
|
index=index/index.html
|
|
spec=spec/fpp-spec.html
|
|
users_guide=users-guide/fpp-users-guide.html
|
|
files="$index $spec $users_guide"
|
|
redo-ifchange $files
|
|
for file in $files
|
|
do
|
|
cp $file .
|
|
done
|