Fix and test workflow
This commit is contained in:
parent
c94e0d53bb
commit
09b852d8f0
|
@ -442,7 +442,7 @@ void SystemTask::Work() {
|
|||
displayApp.PushMessage(Pinetime::Applications::Display::Messages::ShowPairingKey);
|
||||
break;
|
||||
case Messages::BleRadioEnableToggle:
|
||||
if(settingsController.GetBleRadioEnabled()) {
|
||||
if (settingsController.GetBleRadioEnabled()) {
|
||||
nimbleController.EnableRadio();
|
||||
} else {
|
||||
nimbleController.DisableRadio();
|
||||
|
@ -481,7 +481,7 @@ void SystemTask::UpdateMotion() {
|
|||
}
|
||||
|
||||
if (state == SystemTaskState::Sleeping && !(settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::RaiseWrist) ||
|
||||
settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::Shake))) {
|
||||
settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::Shake))) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ do
|
|||
*.cpp|*.h)
|
||||
echo Checking "$file"
|
||||
clang-format -i "$file"
|
||||
if ! git diff --quiet "$basebranch"...HEAD
|
||||
if ! git diff --quiet
|
||||
then
|
||||
printf "\033[31mError:\033[0m Formatting error in %s\n" "$file"
|
||||
CHANGED=1
|
||||
|
|
Loading…
Reference in New Issue
Block a user