diff --git a/scripts/githooks/pre-commit.sh b/scripts/githooks/pre-commit.sh index 56b2890f..df81ba87 100644 --- a/scripts/githooks/pre-commit.sh +++ b/scripts/githooks/pre-commit.sh @@ -2,6 +2,7 @@ #!/bin/bash #!/bin/bash #!/usr/bin/env bash +chmod +x scripts/githooks/pre-commit.sh #!/usr/bin/env bash @@ -61,25 +62,17 @@ printMessage "Running local openim pre-commit hook." # flutter format . # https://gist.github.com/cubxxw/126b72104ac0b0ca484c9db09c3e5694#file-githook-md -# TODO! GIT_FILE_SIZE_LIMIT=2000000 git commit -m "test: this commit is allowed file sizes up to 50MB" -# Maximum file size limit in bytes -limit=${GIT_FILE_SIZE_LIMIT:-50000000} # Default 50MB +limit=${GIT_FILE_SIZE_LIMIT:-50*1000000} # Default 50MB limitInMB=$(( $limit / 1000000 )) function file_too_large(){ - filename=$0 - filesize=$(( $1 / 2**20 )) - - filesize=$(( $1 \/ 2**20 ))\ncat <