Skip to content

Commit

Permalink
Add node modules and new code for release (#57)
Browse files Browse the repository at this point in the history
Co-authored-by: taakleton <taakleton@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and taakleton committed Jan 26, 2022
1 parent da63a48 commit a517f2f
Show file tree
Hide file tree
Showing 8,435 changed files with 1,764,387 additions and 7 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 0 additions & 2 deletions .gitignore
Expand Up @@ -33,7 +33,6 @@ bower_components
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
Expand All @@ -60,5 +59,4 @@ typings/
# next.js build output
.next

node_modules
coverage
7 changes: 4 additions & 3 deletions lib/run.js
Expand Up @@ -114,7 +114,7 @@ exports.downloadHelm = downloadHelm;
function findHelm(rootFolder) {
fs.chmodSync(rootFolder, '777');
var filelist = [];
exports.walkSync(rootFolder, filelist, helmToolName + getExecutableExtension());
(0, exports.walkSync)(rootFolder, filelist, helmToolName + getExecutableExtension());
if (!filelist || filelist.length == 0) {
throw new Error(util.format("Helm executable not found in path", rootFolder));
}
Expand All @@ -123,12 +123,12 @@ function findHelm(rootFolder) {
}
}
exports.findHelm = findHelm;
exports.walkSync = function (dir, filelist, fileToFind) {
var walkSync = function (dir, filelist, fileToFind) {
var files = fs.readdirSync(dir);
filelist = filelist || [];
files.forEach(function (file) {
if (fs.statSync(path.join(dir, file)).isDirectory()) {
filelist = exports.walkSync(path.join(dir, file), filelist, fileToFind);
filelist = (0, exports.walkSync)(path.join(dir, file), filelist, fileToFind);
}
else {
core.debug(file);
Expand All @@ -139,4 +139,5 @@ exports.walkSync = function (dir, filelist, fileToFind) {
});
return filelist;
};
exports.walkSync = walkSync;
run().catch(core.setFailed);
6,489 changes: 6,489 additions & 0 deletions node_modules/.package-lock.json

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions node_modules/@actions/core/LICENSE.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

312 changes: 312 additions & 0 deletions node_modules/@actions/core/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions node_modules/@actions/core/lib/command.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a517f2f

Please sign in to comment.