summaryrefslogtreecommitdiffstats
path: root/install/macos_packages
diff options
context:
space:
mode:
Diffstat (limited to 'install/macos_packages')
-rw-r--r--install/macos_packages/build_and_notarize.sh4
-rw-r--r--install/macos_packages/build_component_package.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/install/macos_packages/build_and_notarize.sh b/install/macos_packages/build_and_notarize.sh
index d3f12193e..768b09350 100644
--- a/install/macos_packages/build_and_notarize.sh
+++ b/install/macos_packages/build_and_notarize.sh
@@ -65,7 +65,7 @@ starship_docs_dir="$2"
arch="$3"
pkgname="${4:-}"
-if [[ ! -d "$starship_docs_dir/.vuepress/dist" ]]; then
+if [[ ! -d "$starship_docs_dir/.vitepress/dist" ]]; then
error "Documentation does not appear to have been built!"
fi
@@ -87,7 +87,7 @@ unzip starship.zip
# Create the component package
echo ">>>> Building Component Package"
-bash "$script_dir/build_component_package.sh" "starship" "$starship_docs_dir/.vuepress/dist"
+bash "$script_dir/build_component_package.sh" "starship" "$starship_docs_dir/.vitepress/dist"
# Create the distribution package
echo ">>>> Building Distribution Package"
diff --git a/install/macos_packages/build_component_package.sh b/install/macos_packages/build_component_package.sh
index 807e50567..2ac4daa3d 100644
--- a/install/macos_packages/build_component_package.sh
+++ b/install/macos_packages/build_component_package.sh
@@ -13,7 +13,7 @@ usage() {
echo "Assumes that the following items already exist:"
echo " - A starship binary which has already been notarized"
echo " - Documentation created by \`npm run build\`, usually in a dist"
- echo " directory at <repo>/docs/.vuepress/dist"
+ echo " directory at <repo>/docs/.vitepress/dist"
echo "Usage: $0 <path-to-starship-binary> <path-to-dist-directory>"
}