mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-07 10:11:54 +00:00
11 lines
205 B
Bash
Executable file
11 lines
205 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
rm -rf .pioenvs
|
|
rm -rf .piolibdeps
|
|
rm -rf .piolib
|
|
|
|
if [[ $1 = "--deep" ]]; then
|
|
rm -rf ~/.platformio/packages/*
|
|
rm -rf ~/.platformio/platforms/*
|
|
rm -rf ~/.platformio/.cache/*
|
|
fi
|