refactor: explicit cd ~ before cloning
Signed-off-by: Dominik Willner th33xitus@gmail.com
This commit is contained in:
@@ -279,6 +279,7 @@ function clone_klipper() {
|
|||||||
|
|
||||||
status_msg "Cloning Klipper from ${repo} ..."
|
status_msg "Cloning Klipper from ${repo} ..."
|
||||||
|
|
||||||
|
cd "${HOME}" || exit 1
|
||||||
if git clone "${repo}" "${KLIPPER_DIR}"; then
|
if git clone "${repo}" "${KLIPPER_DIR}"; then
|
||||||
cd "${KLIPPER_DIR}" && git checkout "${branch}"
|
cd "${KLIPPER_DIR}" && git checkout "${branch}"
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -50,6 +50,7 @@ function klipperscreen_setup() {
|
|||||||
[[ -d ${KLIPPERSCREEN_DIR} ]] && rm -rf "${KLIPPERSCREEN_DIR}"
|
[[ -d ${KLIPPERSCREEN_DIR} ]] && rm -rf "${KLIPPERSCREEN_DIR}"
|
||||||
|
|
||||||
# clone into fresh KlipperScreen dir
|
# clone into fresh KlipperScreen dir
|
||||||
|
cd "${HOME}" || exit 1
|
||||||
if ! git clone "${KLIPPERSCREEN_REPO}" "${KLIPPERSCREEN_DIR}"; then
|
if ! git clone "${KLIPPERSCREEN_REPO}" "${KLIPPERSCREEN_DIR}"; then
|
||||||
print_error "Cloning KlipperScreen from\n ${KLIPPERSCREEN_REPO}\n failed!"
|
print_error "Cloning KlipperScreen from\n ${KLIPPERSCREEN_REPO}\n failed!"
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
@@ -42,6 +42,8 @@ function install_mjpg-streamer() {
|
|||||||
### step 1: clone mjpg-streamer
|
### step 1: clone mjpg-streamer
|
||||||
status_msg "Cloning MJPG-Streamer from ${repo} ..."
|
status_msg "Cloning MJPG-Streamer from ${repo} ..."
|
||||||
[[ -d "${HOME}/mjpg-streamer" ]] && rm -rf "${HOME}/mjpg-streamer"
|
[[ -d "${HOME}/mjpg-streamer" ]] && rm -rf "${HOME}/mjpg-streamer"
|
||||||
|
|
||||||
|
cd "${HOME}" || exit 1
|
||||||
if ! git clone "${repo}" "${HOME}/mjpg-streamer"; then
|
if ! git clone "${repo}" "${HOME}/mjpg-streamer"; then
|
||||||
print_error "Cloning MJPG-Streamer from\n ${repo}\n failed!"
|
print_error "Cloning MJPG-Streamer from\n ${repo}\n failed!"
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
@@ -187,6 +187,7 @@ function clone_telegram_bot() {
|
|||||||
### force remove existing Moonraker-Telegram-Bot dir
|
### force remove existing Moonraker-Telegram-Bot dir
|
||||||
[[ -d ${repo} ]] && rm -rf "${TELEGRAM_BOT_DIR}"
|
[[ -d ${repo} ]] && rm -rf "${TELEGRAM_BOT_DIR}"
|
||||||
|
|
||||||
|
cd "${HOME}" || exit 1
|
||||||
if ! git clone "${repo}" "${TELEGRAM_BOT_DIR}"; then
|
if ! git clone "${repo}" "${TELEGRAM_BOT_DIR}"; then
|
||||||
print_error "Cloning Moonraker-Telegram-Bot from\n ${repo}\n failed!"
|
print_error "Cloning Moonraker-Telegram-Bot from\n ${repo}\n failed!"
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
@@ -214,6 +214,7 @@ function clone_moonraker() {
|
|||||||
### force remove existing moonraker dir and clone into fresh moonraker dir
|
### force remove existing moonraker dir and clone into fresh moonraker dir
|
||||||
[[ -d ${MOONRAKER_DIR} ]] && rm -rf "${MOONRAKER_DIR}"
|
[[ -d ${MOONRAKER_DIR} ]] && rm -rf "${MOONRAKER_DIR}"
|
||||||
|
|
||||||
|
cd "${HOME}" || exit 1
|
||||||
if ! git clone "${MOONRAKER_REPO}" "${MOONRAKER_DIR}"; then
|
if ! git clone "${MOONRAKER_REPO}" "${MOONRAKER_DIR}"; then
|
||||||
print_error "Cloning Moonraker from\n ${repo}\n failed!"
|
print_error "Cloning Moonraker from\n ${repo}\n failed!"
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
@@ -30,6 +30,8 @@ function install_pgc_for_klipper() {
|
|||||||
dependency_check "${dep[@]}"
|
dependency_check "${dep[@]}"
|
||||||
|
|
||||||
[[ -d ${PGC_DIR} ]] && rm -rf "${PGC_DIR}"
|
[[ -d ${PGC_DIR} ]] && rm -rf "${PGC_DIR}"
|
||||||
|
|
||||||
|
cd "${HOME}" || exit 1
|
||||||
if ! git clone "${PGC_REPO}" "${PGC_DIR}"; then
|
if ! git clone "${PGC_REPO}" "${PGC_DIR}"; then
|
||||||
print_error "Cloning PrettyGCode for Klipper from\n ${PGC_REPO}\n failed!"
|
print_error "Cloning PrettyGCode for Klipper from\n ${PGC_REPO}\n failed!"
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
Reference in New Issue
Block a user