mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
14 lines
389 B
CoffeeScript
14 lines
389 B
CoffeeScript
# for sprite page, which uses the age of the files to
|
|
# order the sprites and make the more recent ones
|
|
# show up at the top
|
|
|
|
module.exports.setup = (app) ->
|
|
app.get('/server/sprite-info', (req, res) ->
|
|
exec = require('child_process').exec
|
|
|
|
child = exec('ls -c1t app/assets/images/sprites/',
|
|
(error, stdout, stderr) ->
|
|
res.write(stdout)
|
|
res.end()
|
|
)
|
|
)
|