mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
9 lines
226 B
CoffeeScript
9 lines
226 B
CoffeeScript
child_process = require "child_process"
|
|
gulp = require "gulp"
|
|
|
|
|
|
module.exports = ->
|
|
child_process.exec "reload.bat", (err, stdout, stderr) ->
|
|
console.log err if err
|
|
module.exports.displayName = "reload"
|