mirror of
https://code.forgejo.org/actions/setup-node
synced 2025-03-14 22:26:59 +01:00
11 lines
241 B
JavaScript
11 lines
241 B
JavaScript
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;
|