mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
18 lines
497 B
Bash
Executable File
18 lines
497 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Compute the size of the development environment closure
|
|
#
|
|
DADE_CURRENT_SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
PATHS=$DADE_CURRENT_SCRIPT_DIR/../var/gc-roots/*/
|
|
|
|
for bin in $PATHS; do
|
|
NAME=$(basename $bin)
|
|
CLO=$(nix-store -qR $bin)
|
|
SIZE=$(du -shc $CLO | tail -1 | awk '{ print $1 }')
|
|
printf "%-20s: %s\n" $NAME $SIZE
|
|
done
|
|
|
|
TOTAL=$(du -shc $(nix-store -qR $PATHS) | tail -1 | awk '{ print $1 }')
|
|
echo
|
|
printf "%-20s: %s\n" "grand total" $TOTAL
|