Compare commits

...

3 Commits

Author SHA1 Message Date
Nick Berardi
c7129245a3 Merge 89a9d38d39 into a374ac8fac 2024-05-10 03:16:27 -04:00
Justin Otherguy
a374ac8fac fix: add unzip to dependencies for Mainsail and Fluidd 2024-05-09 20:56:16 +02:00
Nick Berardi
89a9d38d39 trim klipper git clone to only latest history 2024-01-01 15:03:40 -05:00
3 changed files with 3 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ function install_fluidd() {
fi
### checking dependencies
local dep=(wget nginx)
local dep=(wget nginx unzip)
dependency_check "${dep[@]}"
### detect conflicting Haproxy and Apache2 installations
detect_conflicting_packages

View File

@@ -264,7 +264,7 @@ function clone_klipper() {
status_msg "Cloning Klipper from ${repo} ..."
cd "${HOME}" || exit 1
if git clone "${repo}" "${KLIPPER_DIR}"; then
if git clone "${repo}" "${KLIPPER_DIR}" --depth 1; then
cd "${KLIPPER_DIR}" && git checkout "${branch}"
else
print_error "Cloning Klipper from\n ${repo}\n failed!"

View File

@@ -37,7 +37,7 @@ function install_mainsail() {
fi
### checking dependencies
local dep=(wget nginx)
local dep=(wget nginx unzip)
dependency_check "${dep[@]}"
### detect conflicting Haproxy and Apache2 installations
detect_conflicting_packages