-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to find tag for current OS #5
Comments
Could you please try to execute it with And could you please execute it with |
@darkoverlordofdata I got the problem, hopefully fixed it Could you please update webber by executing the following commands cd /opt/webber
git pull
swift build -c release And then please change directory to the project folder and try again webber serve -t pwa -s Service |
That didn't work, but I found the problem - lsb-release is notoriosly
unreliable in ubuntu derivatives. You're not doing anything wrong, just
typical linux resistance to standardization. Anyway, once i patched this
for my machine, it worked.
```
private var ubuntuRelease: String? {
guard let data = FileManager.default.contents(atPath:
"/etc/lsb-release"), let str = String(data: data, encoding: .utf8) else {
return nil
}
if str.contains("DISTRIB_RELEASE=18.04") {
return "ubuntu18.04"
} else if str.contains("DISTRIB_RELEASE=20.04") {
return "ubuntu20.04"
} else if str.contains("DISTRIB_RELEASE=22.04") {
return "ubuntu22.04"
} else if str.contains("DISTRIB_RELEASE=7.1") {
return "ubuntu22.04"
} else if str.contains("DISTRIB_RELEASE=24.04") {
return "ubuntu24.04"
}
return nil
}
```
…On Sat, Oct 19, 2024 at 7:22 PM Mikhail Isaev aka iMike < ***@***.***> wrote:
@darkoverlordofdata <https://github.com/darkoverlordofdata> I got the
problem, hopefully fixed it
Could you please update webber by executing the following commands
cd /opt/webber
git pull
swift build -c release
And then please change directory to the project folder and try again
webber serve -t pwa -s Service
—
Reply to this email directly, view it on GitHub
<#5 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAJUE4RGPNB3745RJYNHTNTZ4MHYBAVCNFSM6AAAAABQHVG6XSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMRUGQZTAMRSGE>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
--
Bruce Davidson
|
btw -
```
uname -v
#47~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Oct 2 16:16:55 UTC 2
```
…On Mon, Oct 21, 2024 at 4:44 PM bruce ***@***.***> wrote:
That didn't work, but I found the problem - lsb-release is notoriosly
unreliable in ubuntu derivatives. You're not doing anything wrong, just
typical linux resistance to standardization. Anyway, once i patched this
for my machine, it worked.
```
private var ubuntuRelease: String? {
guard let data = FileManager.default.contents(atPath:
"/etc/lsb-release"), let str = String(data: data, encoding: .utf8) else {
return nil
}
if str.contains("DISTRIB_RELEASE=18.04") {
return "ubuntu18.04"
} else if str.contains("DISTRIB_RELEASE=20.04") {
return "ubuntu20.04"
} else if str.contains("DISTRIB_RELEASE=22.04") {
return "ubuntu22.04"
} else if str.contains("DISTRIB_RELEASE=7.1") {
return "ubuntu22.04"
} else if str.contains("DISTRIB_RELEASE=24.04") {
return "ubuntu24.04"
}
return nil
}
```
On Sat, Oct 19, 2024 at 7:22 PM Mikhail Isaev aka iMike <
***@***.***> wrote:
> @darkoverlordofdata <https://github.com/darkoverlordofdata> I got the
> problem, hopefully fixed it
>
> Could you please update webber by executing the following commands
>
> cd /opt/webber
> git pull
> swift build -c release
>
> And then please change directory to the project folder and try again
>
> webber serve -t pwa -s Service
>
> —
> Reply to this email directly, view it on GitHub
> <#5 (comment)>, or
> unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AAJUE4RGPNB3745RJYNHTNTZ4MHYBAVCNFSM6AAAAABQHVG6XSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMRUGQZTAMRSGE>
> .
> You are receiving this because you were mentioned.Message ID:
> ***@***.***>
>
--
Bruce Davidson
--
Bruce Davidson
|
Thank you for the feedback! Could you please send me the listing of your |
running on elementary OS 7.1 Horus - Built on Ubuntu 22.04.5 LTS - Linux 6.8.0-47-generic
The text was updated successfully, but these errors were encountered: