Skip to content

Commit feed98e

Browse files
committed
Ensure repos are up-to-date
These steps are provided by the release process.
1 parent 56376f3 commit feed98e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

contrib/gitian-build.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,13 +220,20 @@ def main():
220220
subprocess.check_call(['git', 'checkout', args.commit])
221221
os.chdir(workdir)
222222

223+
os.chdir('gitian-builder')
224+
subprocess.check_call(['git', 'pull'])
225+
os.chdir(workdir)
226+
223227
if args.build:
224228
build()
225229

226230
if args.sign:
227231
sign()
228232

229233
if args.verify:
234+
os.chdir('gitian.sigs')
235+
subprocess.check_call(['git', 'pull'])
236+
os.chdir(workdir)
230237
verify()
231238

232239
if __name__ == '__main__':

0 commit comments

Comments
 (0)