File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ export class NextDeployInstance extends NextInstance {
148148
149149 try {
150150 const deployUrlRegex = new RegExp (
151- / h t t p s : \/ \/ a p p \. n e t l i f y \. c o m \/ s i t e s \/ (?< siteName > [ ^ \/ ] + ) \/ d e p l o y s \/ (?< deployID > [ 0 - 9 a - f ] + ) / gm,
151+ / h t t p s : \/ \/ a p p \. n e t l i f y \. c o m \/ ( s i t e s | p r o j e c t s ) \/ (?< siteName > [ ^ \/ ] + ) \/ d e p l o y s \/ (?< deployID > [ 0 - 9 a - f ] + ) / gm,
152152 ) . exec ( deployRes . stdout )
153153 const [ buildLogsUrl ] = deployUrlRegex || [ ]
154154 const { deployID, siteName } = deployUrlRegex ?. groups || { }
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ async function deploySite(
281281
282282 const { siteName, deployID } =
283283 new RegExp (
284- / a p p \. n e t l i f y \. c o m \/ s i t e s \/ (?< siteName > [ ^ \/ ] + ) \/ d e p l o y s \/ (?< deployID > [ 0 - 9 a - f ] + ) / gm,
284+ / a p p \. n e t l i f y \. c o m \/ ( s i t e s | p r o j e c t s ) \/ (?< siteName > [ ^ \/ ] + ) \/ d e p l o y s \/ (?< deployID > [ 0 - 9 a - f ] + ) / gm,
285285 ) . exec ( output ) ?. groups || { }
286286
287287 if ( ! deployID ) {
You can’t perform that action at this time.
0 commit comments