diff options
Diffstat (limited to 'bash/init.sh')
-rw-r--r-- | bash/init.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bash/init.sh b/bash/init.sh index 1cb538f..a3e3075 100644 --- a/bash/init.sh +++ b/bash/init.sh @@ -13,10 +13,10 @@ pushd $DOTFILES > /dev/null sizes=$(git diff-files --ignore-submodules | awk '{print $6}' | xargs du | awk '{print $1}') for size in $sizes; do - if [[ $size = 1 ]]; then - # https://github.com/AGWA/git-crypt/issues/53 - echo "dotfiles contains encrypted file with 0 bytes" - fi + if [[ $size = 1 ]]; then + # https://github.com/AGWA/git-crypt/issues/53 + echo "dotfiles contains encrypted file with 0 bytes" + fi done popd > /dev/null |