Skip to content
Snippets Groups Projects
Verified Commit ceedabbf authored by Xenhat Hex's avatar Xenhat Hex
Browse files

Fix package manager detection

parent e0e9355d
No related branches found
No related tags found
1 merge request!57Draft: Various linux-centric development experience fixes
This commit is part of merge request !57. Comments created here will be created in the context of that merge request.
#!/bin/bash #!/bin/bash
do_build() { do_build() {
# TODO: build inside a chroot? # TODO: build inside a chroot?
cd "${pkgname}" || exit 1 cd "${pkgname}" || exit 1
...@@ -32,7 +31,8 @@ then ...@@ -32,7 +31,8 @@ then
fi fi
else else
eval "$(</etc/lsb-release)" eval "$(</etc/lsb-release)"
echo "Distribution \'${DISTRIB_DESCRIPTION}\' is not currently supported by the native build script. Merge requests are welcome." echo "Distribution '${DISTRIB_DESCRIPTION}' is not currently supported by the native build script. Merge requests are welcome."
exit 2
fi fi
fi fi
do_build; do_build;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment