Skip to content

Commit b6953fe

Browse files
committed
fix: change position of preReceive in the chain
1 parent 1233039 commit b6953fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/proxy/chain.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ const proc = require('./processors');
22

33
const pushActionChain = [
44
proc.push.parsePush,
5-
proc.push.preReceive,
65
proc.push.checkRepoInAuthorisedList,
76
proc.push.checkCommitMessages,
87
proc.push.checkAuthorEmails,
98
proc.push.checkUserPushPermission,
109
proc.push.checkIfWaitingAuth,
1110
proc.push.pullRemote,
1211
proc.push.writePack,
12+
proc.push.preReceive,
1313
proc.push.getDiff,
1414
proc.push.clearBareClone,
1515
proc.push.scanDiff,

0 commit comments

Comments
 (0)