Minor custom package wording change (#31717)

> Currently, shell scripts are supported.

this sounds to me like shell scripts might not be supported in the
future.
This commit is contained in:
William Theaker 2025-08-07 20:09:42 -04:00 committed by GitHub
parent c274d615f4
commit dbde8e2e2b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -90,7 +90,7 @@ const getUninstallScriptTooltip = (pkgType: PackageType) => {
const getUninstallHelpText = (pkgType: PackageType) => {
if (isFleetMaintainedPackageType(pkgType)) {
return "Currently, shell scripts are supported.";
return "Currently, only shell scripts are supported.";
}
if (pkgType === "exe") {
@ -112,7 +112,7 @@ const getUninstallHelpText = (pkgType: PackageType) => {
if (pkgType === "tar.gz") {
return (
<>
Currently, shell scripts are supported.{" "}
Currently, only shell scripts are supported.{" "}
<CustomLink
url={`${LEARN_MORE_ABOUT_BASE_LINK}/uninstall-scripts`}
text="Learn more about uninstall scripts"