- recompile dist
This commit is contained in:
+3
-8
@@ -3296,15 +3296,10 @@ function checkExportedData(exportCache, cacheInput) {
|
||||
}
|
||||
}
|
||||
function resolveMode(mode, commitMode) {
|
||||
if (commitMode === false || mode === undefined) {
|
||||
if (commitMode === true) {
|
||||
return 'COMMIT';
|
||||
}
|
||||
else {
|
||||
return 'PR';
|
||||
}
|
||||
if (commitMode === true) {
|
||||
return 'COMMIT';
|
||||
}
|
||||
else {
|
||||
if (mode !== undefined) {
|
||||
const upperCaseMode = mode.toUpperCase();
|
||||
if (upperCaseMode === 'COMMIT') {
|
||||
return 'COMMIT';
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user