Skip to content

Commit 33d0765

Browse files
fix pragma message, add more
1 parent 21d934f commit 33d0765

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/shared/secretsService.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#pragma once
22

3-
// pun intended.
3+
// pun intended.
44

5-
// CI and other pipelines need something to work with, using the template should be fine.
5+
// CI and other pipelines need something to work with, using the template should be fine.
66
#ifdef CI_BUILD
7-
#pragma message(-- CI Build, mocking secrets --)
7+
#pragma message("-- CI Build, mocking secrets --")
88
#include "secrets_template.h"
99
#else
1010
#include "secrets.h"

src/shared/serialWrapper.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
//#include <SafeString.h>
55

66
#ifdef DEBUG
7+
#pragma message("-- DEBUG Build, enabling serial output --")
78
const bool USE_SERIAL = true;
89
#else
910
const bool USE_SERIAL = false;

0 commit comments

Comments
 (0)