mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
21 lines
398 B
Bash
Executable File
21 lines
398 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
if [[ $# < 1 ]]; then
|
|
echo "usage: $0 <MAX_SIZE_IN_GB>"
|
|
exit 1
|
|
fi
|
|
|
|
max_size_gb=$1
|
|
|
|
current_size=$(du -s target | cut -f1)
|
|
current_size_gb=$(expr ${current_size} / 1024 / 1024)
|
|
|
|
echo "target directory size: ${current_size_gb}gb. max size: ${max_size_gb}gb"
|
|
|
|
if [[ ${current_size_gb} -gt ${max_size_gb} ]]; then
|
|
echo "clearing target directory"
|
|
rm -rf target
|
|
fi
|