Wednesday, June 28, 2023
dev@conference.yunohost.org
June
Mon Tue Wed Thu Fri Sat Sun
      1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
   
             

[14:22:30] <Yunohost Git/Infra notifications> [issues] @renne opened [issue #2208](https://github.com/YunoHost/issues/issues/2208): Updating MX records in Cloudflare DNS via autodns fails
[14:22:32] <Yunohost Git/Infra notifications> [issues] @renne labeled :space_invader: bug on [issue #2208](https://github.com/YunoHost/issues/issues/2208): Updating MX records in Cloudflare DNS via autodns fails
[18:17:33] <Yunohost Git/Infra notifications> Failed to run the source auto-update for : code-server. Please run manually the autoupdate_app_sources.py script on these apps to debug what is happening!
[18:35:20] <Tag> `Exception: No assets matching regex 'code-server-*-linux-arm64.tar.gz' for release 4.14.1 among [ ... 'code-server-4.14.1-linux-arm64.tar.gz', ... ]`
[18:36:11] <Tag> Don't know why that doesn't match :/
[20:24:44] <e0> Penis
[20:30:25] <Aleks (he/him/il/lui)> Yeah its annoying but gotta use `.*` instead of `*`
[20:30:48] <Aleks (he/him/il/lui)> the reason is, it's not like "bash" where `*` is a wildcard that matches any char multiple times
[20:31:27] <Aleks (he/him/il/lui)> it's "actual" regex and saying "i want to match any char" is `.`, and saying "i want to match this zero, one or N times" is `*`, hence `.*`