Skip to content

Commit ec2c0df

Browse files
committed
fix: standardize capitalization of error message for Node.js installation check
1 parent 54ef9d5 commit ec2c0df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/system/node.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ func GetInstalledNodeVersion() (string, error) {
1313
// Check if Node.js is installed
1414
nodePath, err := exec.LookPath("node")
1515
if err != nil {
16-
return "", fmt.Errorf("node.js is not installed: %w", err)
16+
return "", fmt.Errorf("Node.js is not installed: %w", err)
1717
}
1818

1919
// Get the Node.js version

0 commit comments

Comments
 (0)