You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since we now distribute non single binary files, our previous upgrade path doesn't work anymore.
We need to run upgrader before anything else in order to prevent later program issues interfering with updates.
But, we also need a guarantee that the initial program call will be done.
We must find (a good) way for this pseudo code:
copy current dist to old dist
move new dist to current dist
run with --version
on succees
run new version with sys.argv[1:]
on failure
delete current dist
move old dist to current dist
The text was updated successfully, but these errors were encountered:
Since we now distribute non single binary files, our previous upgrade path doesn't work anymore.
We need to run upgrader before anything else in order to prevent later program issues interfering with updates.
But, we also need a guarantee that the initial program call will be done.
We must find (a good) way for this pseudo code:
copy current dist to old dist
move new dist to current dist
run with --version
on succees
run new version with sys.argv[1:]
on failure
delete current dist
move old dist to current dist
The text was updated successfully, but these errors were encountered: