Skip to content
Snippets Groups Projects
Commit 52dca8ee authored by Florent Thiery's avatar Florent Thiery
Browse files

fix conf.sh path so that deployment key gets removed

parent 6bf1ebd1
No related branches found
No related tags found
No related merge requests found
...@@ -50,9 +50,9 @@ def setup(interactive=True): ...@@ -50,9 +50,9 @@ def setup(interactive=True):
utils.log('Configuration written.') utils.log('Configuration written.')
utils.log('Removing activation key from conf.sh') utils.log('Removing activation key from conf.sh')
with open('conf.sh', 'r') as f: with open('../../conf.sh', 'r') as f:
lines = f.readlines() lines = f.readlines()
with open('conf.sh', 'w') as f: with open('../../conf.sh', 'w') as f:
for l in lines: for l in lines:
if not l.startswith('SKYREACH_ACTIVATION_KEY'): if not l.startswith('SKYREACH_ACTIVATION_KEY'):
f.write(l) f.write(l)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment