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
Self-update crash on version upgrade — The cipi main script was read lazily by bash; when cipi self-update replaced the file on disk mid-execution, bash would resume reading the new file at the old byte offset, causing syntax error near unexpected token ';;' whenever the new version had different line lengths (e.g. added commands); wrapped the entire script in a { …; exit; } block so bash reads it fully into memory before executing, making on-disk replacement safe