36 lines
1.2 KiB
Bash
Executable File
36 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
#=======================================================================#
|
|
# Copyright (C) 2020 - 2022 Dominik Willner <th33xitus@gmail.com> #
|
|
# #
|
|
# This file is part of KIAUH - Klipper Installation And Update Helper #
|
|
# https://github.com/th33xitus/kiauh #
|
|
# #
|
|
# This file may be distributed under the terms of the GNU GPLv3 license #
|
|
#=======================================================================#
|
|
|
|
set -e
|
|
|
|
switch_to_master(){
|
|
cd $KLIPPER_DIR
|
|
status_msg "Switching...Please wait ..."; echo
|
|
git fetch origin -q && git checkout master; echo
|
|
}
|
|
|
|
switch_to_scurve_shaping(){
|
|
cd $KLIPPER_DIR
|
|
status_msg "Switching...Please wait ..."; echo
|
|
if ! git remote | grep dmbutyugin -q; then
|
|
git remote add dmbutyugin $DMBUTYUGIN_REPO
|
|
fi
|
|
git fetch dmbutyugin -q && git checkout scurve-shaping; echo
|
|
}
|
|
|
|
switch_to_scurve_smoothing(){
|
|
cd $KLIPPER_DIR
|
|
status_msg "Switching...Please wait ..."; echo
|
|
if ! git remote | grep dmbutyugin -q; then
|
|
git remote add dmbutyugin $DMBUTYUGIN_REPO
|
|
fi
|
|
git fetch dmbutyugin -q && git checkout scurve-smoothing; echo
|
|
} |