[misc] delete commented ProjectSize task

This commit is contained in:
Jakob Ackermann 2021-07-07 11:58:33 +01:00
parent 1b63336d36
commit 00c14ee624
No known key found for this signature in database
GPG key ID: 30C56800FCA3828A

View file

@ -1,26 +0,0 @@
// TODO: This file was created by bulk-decaffeinate.
// Sanity-check the conversion and remove this comment.
// require("coffee-script")
// fs = require("fs")
// _ = require("underscore")
// if not process.argv[2]
// console.log "Usage: coffee project_size.coffee user_files_path"
// else
// dirPath = process.argv[2]
// if not fs.lstatSync(dirPath).isDirectory()
// console.log dirPath + " directory not exist"
// else
// fs.readdir dirPath, (err, files)->
// projects = []
// files.forEach (file)->
// project_id = file.split("_")[0]
// if !projects[project_id]
// projects[project_id] = 0
// projects[project_id] += fs.lstatSync(dirPath+"/"+file).size
// ids = _.keys projects
// console.log "project \t size"
// ids.forEach (id)->
// console.log id + "\t" + projects[id]