Compare commits

..

No commits in common. "18e4153b061a8b9f8126551d4d1cbb78b990871f" and "bb5b4c210174b1edd4da04a5492286649aedccf4" have entirely different histories.

1 changed files with 0 additions and 4 deletions

View File

@ -89,10 +89,6 @@ for environment in environments:
else:
config[f'env:{environment}']['build_flags'] = config[f'env:{environment}']['build_flags'] + f' -DFW_VERSION=\\"{git_branch}_{environment}_{commit_hash}\\"'
# Write the platformio.ini file
with open(os.path.join(firmware_folder, 'platformio.ini'), 'w') as configfile:
config.write(configfile)
# if argument is not supplied, build all environments listed in platformio.ini
if len(sys.argv) == 1:
subprocess.run([f'{platformio_path}', 'run','-c',f'{firmware_folder}/platformio.ini'], cwd=current_dir)