mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
Fix bug so watch works on theme directories as well
This commit is contained in:
parent
6b8244ba67
commit
e799100395
1 changed files with 1 additions and 1 deletions
|
@ -217,7 +217,7 @@ func copyStatic() error {
|
|||
|
||||
// Copy Static to Destination
|
||||
jww.INFO.Println("syncing from", themeDir, "to", publishDir)
|
||||
return fsync.Sync(publishDir, themeDir)
|
||||
fsync.Sync(publishDir, themeDir)
|
||||
}
|
||||
|
||||
// Copy Static to Destination
|
||||
|
|
Loading…
Reference in a new issue