mirror of
https://github.com/S2-/gitlit
synced 2025-08-02 20:30:05 +02:00
fix args
This commit is contained in:
@@ -9,7 +9,7 @@ const args = require('minimist')(process.defaultApp ? process.argv.slice(3) : pr
|
||||
}
|
||||
});
|
||||
|
||||
const repoDir = path.resolve(path.normalize(args._[0]));
|
||||
const repoDir = path.resolve(path.normalize(args._.join(' ')));
|
||||
|
||||
function getLfsFileList(dir, cb) {
|
||||
exec('git lfs ls-files', {
|
||||
|
Reference in New Issue
Block a user