mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-08-02 04:33:14 +00:00
Fix bug when there is no rice-box
This commit is contained in:
parent
ba0b15e191
commit
50bb68ddc8
1 changed files with 7 additions and 2 deletions
|
|
@ -10,8 +10,13 @@ var config = require('./config')
|
|||
var webpackConfig = require('./webpack.dev.conf')
|
||||
var fs = require('fs')
|
||||
|
||||
fs.unlinkSync('./rice-box.go')
|
||||
fs.unlinkSync('./caddy/hugo/rice-box.go')
|
||||
if (fs.existsSync('./rice-box.go')) {
|
||||
fs.unlinkSync('./rice-box.go')
|
||||
}
|
||||
|
||||
if (fs.existsSync('./caddy/hugo/rice-box.go')) {
|
||||
fs.unlinkSync('./caddy/hugo/rice-box.go')
|
||||
}
|
||||
|
||||
rm(path.join(config.assetsRoot, config.assetsSubDirectory), err => {
|
||||
if (err) throw err
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue