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