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
Happened to me as well. The '[ option=value ]' is rejected due to an incomplete regexp, below is how I fixed /usr/lib/linuxmint/mintSources/mintSources.py
211c211
< r = re.compile(r'(?:deb|deb-src)\s+\w+:/\S+?/?\s+\S+')
---
> r = re.compile(r'(?:deb|deb-src)\s+(?:\[.*\])\s+\w+:/\S+?/?\s+\S+')
Hi, I'm trying to install Docker on Tina (https://docs.docker.com/install/linux/docker-ce/ubuntu/) and I'm unable to setup their repository using
add-apt-repository
command:Workaround
Add the repo manually to
/etc/apt/sources.list
See also
typora/typora-issues#2065
https://forums.docker.com/t/59436/4
https://stackoverflow.com/q/57402923
#171
The text was updated successfully, but these errors were encountered: