mirror of
https://github.com/actions/setup-node.git
synced 2025-07-18 04:28:23 +02:00
Initial Import
This commit is contained in:
commit
9bb7038a07
244 changed files with 22913 additions and 0 deletions
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;
|
Loading…
Add table
Add a link
Reference in a new issue