Skip to content

Commit

Permalink
fix patch
Browse files Browse the repository at this point in the history
  • Loading branch information
hipstersmoothie committed Feb 4, 2023
1 parent 2d7332d commit 6df7dd5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
path: |
node_modules
packages/*/node_modules
key: node-modules-${{ runner.os }}-${{ steps.node-version.outputs.version }}-${{ hashFiles('yarn.lock') }}
key: node-modules-${{ runner.os }}-${{ steps.node-version.outputs.version }}-${{ hashFiles('yarn.lock', 'patches/*.patch') }}
restore-keys: |
node-modules-${{ runner.os }}-${{ steps.node-version.outputs.version }}-
Expand Down
11 changes: 10 additions & 1 deletion patches/@auto-it+core+10.37.6.patch
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
diff --git a/node_modules/@auto-it/core/dist/auto.js b/node_modules/@auto-it/core/dist/auto.js
index b388374..f5c1019 100644
index b388374..75ef459 100644
--- a/node_modules/@auto-it/core/dist/auto.js
+++ b/node_modules/@auto-it/core/dist/auto.js
@@ -316,7 +316,7 @@ class Auto {
Expand All @@ -20,3 +20,12 @@ index b388374..f5c1019 100644
if (await this.git.verifyAuth(urlWithAuth)) {
this.logger.veryVerbose.note("Using token + html URL as remote");
return urlWithAuth;
@@ -333,7 +335,7 @@ class Auto {
this.logger.veryVerbose.note("Using bare html URL as remote");
return html_url;
}
- this.logger.veryVerbose.note("Using remote set in environment");
+ this.logger.veryVerbose.note("Using remote set in environment!!!!!");
return configuredRemote;
}
/** Interactive prompt for initializing an .autorc */

0 comments on commit 6df7dd5

Please sign in to comment.