Merge branch 'bbd_migrate_upcoming' into 'master'

Migrating BBD Upcomings

See merge request core-developers/forge!633
This commit is contained in:
Michael Kamensky
2018-06-12 04:08:27 +00:00
51 changed files with 2 additions and 2 deletions

View File

@@ -12,6 +12,6 @@ for dirName, subdirList, fileList in os.walk(upcoming):
newFile = os.path.join(cardsfolder, filename[0], filename) newFile = os.path.join(cardsfolder, filename[0], filename)
if os.path.exists(newFile): if os.path.exists(newFile):
subprocess.call('git rm %s' % (newFile), shell=True) subprocess.call('git rm %s' % (newFile), shell=True)
else: else:
subprocess.call('git mv %s %s' % (curLocation, newFile), shell=True) subprocess.call('git mv %s %s' % (curLocation, newFile), shell=True)