Skip to content

Commit

Permalink
🔨 Fix CI Test clean step
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Dec 16, 2022
1 parent df2a248 commit 071dae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildroot/share/PlatformIO/scripts/pioutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
def is_pio_build():
from SCons.Script import DefaultEnvironment
env = DefaultEnvironment()
return not env.IsIntegrationDump()
return not env.IsIntegrationDump() and not env.IsCleanTarget()

def get_pio_version():
from platformio import util
Expand Down

0 comments on commit 071dae0

Please sign in to comment.