We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8330f4a commit 72e5606Copy full SHA for 72e5606
1 file changed
lib/utils.js
@@ -27,7 +27,7 @@ function detectUbuntuCodename() {
27
const osRelease = fs.readFileSync('/etc/os-release', 'utf8');
28
const match = osRelease.match(/^VERSION_CODENAME=(.*)$/m);
29
return match ? match[1].trim() : null;
30
- } catch (e) {
+ } catch {
31
return null;
32
}
33
0 commit comments