1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 19:07:54 +01:00

remove box braces as well for urls

This commit is contained in:
Jason N. 2024-05-09 15:05:01 -04:00
parent 99eb496296
commit d0b539dc1d

View file

@ -16,7 +16,7 @@ for line in makefile_lines:
var_name = parts[0].strip().split(' ')[1].lower()
else:
var_name = parts[0].strip().lower()
inputs[var_name] = {'default_value': parts[1].strip(), 'makefile': True}
inputs[var_name] = {'default_value': parts[1].strip(' []'), 'makefile': True}
action = open('../../action.yml', 'r')
action_lines = action.readlines()