More debug-logging
This commit is contained in:
parent
cc68804cfa
commit
2bc85cf6d6
@ -17,6 +17,8 @@ jobs:
|
||||
#
|
||||
# (And the token should be retrieved from Vault)
|
||||
# Using `github.ref` just in case there's any race condition ambiguity.
|
||||
- run: |
|
||||
echo "DEBUG - github.ref is ${{ github.ref }}"
|
||||
- uses: https://gitea.scubbo.org/scubbo/commit-report-sync@${{ github.ref}}
|
||||
with:
|
||||
target_repo_domain: github.com
|
||||
|
1
dist/index.js
vendored
1
dist/index.js
vendored
@ -25714,6 +25714,7 @@ function getCommitsSinceLatestBeforeGivenDate(dir, date) {
|
||||
catch (e) {
|
||||
// Just in case the error is not an `ExecSyncError` - print it out so we can see what it is.
|
||||
console.log(e);
|
||||
console.log(`DEBUG - e is ${e}`);
|
||||
const error = e;
|
||||
// No commits in the target repo - return an empty array, which will result in the first representative commit
|
||||
// being made as the first commit. And then we can iterate as normal (recalling that the target history is
|
||||
|
BIN
node_modules/@vercel/ncc/dist/ncc/cli.js.cache
generated
vendored
BIN
node_modules/@vercel/ncc/dist/ncc/cli.js.cache
generated
vendored
Binary file not shown.
BIN
node_modules/@vercel/ncc/dist/ncc/index.js.cache
generated
vendored
BIN
node_modules/@vercel/ncc/dist/ncc/index.js.cache
generated
vendored
Binary file not shown.
BIN
node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache
generated
vendored
BIN
node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache
generated
vendored
Binary file not shown.
BIN
node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache
generated
vendored
BIN
node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache
generated
vendored
Binary file not shown.
BIN
node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache
generated
vendored
BIN
node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache
generated
vendored
Binary file not shown.
@ -69,6 +69,7 @@ export function getCommitsSinceLatestBeforeGivenDate(dir: string, date: Date): C
|
||||
} catch (e) {
|
||||
// Just in case the error is not an `ExecSyncError` - print it out so we can see what it is.
|
||||
console.log(e);
|
||||
console.log(`DEBUG - e is ${e}`);
|
||||
const error = e as ExecSyncError
|
||||
// No commits in the target repo - return an empty array, which will result in the first representative commit
|
||||
// being made as the first commit. And then we can iterate as normal (recalling that the target history is
|
||||
|
Loading…
x
Reference in New Issue
Block a user