mirror of
https://gitea.com/actions/setup-node.git
synced 2025-07-12 14:47:07 +08:00
Initial Import
This commit is contained in:
11
node_modules/shelljs/src/pwd.js
generated
vendored
Normal file
11
node_modules/shelljs/src/pwd.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
var path = require('path');
|
||||
var common = require('./common');
|
||||
|
||||
//@
|
||||
//@ ### pwd()
|
||||
//@ Returns the current directory.
|
||||
function _pwd(options) {
|
||||
var pwd = path.resolve(process.cwd());
|
||||
return common.ShellString(pwd);
|
||||
}
|
||||
module.exports = _pwd;
|
Reference in New Issue
Block a user