diff options
author | Malfurious <m@lfurio.us> | 2021-07-22 00:25:44 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2021-07-22 00:25:44 -0400 |
commit | ff5c7a2af90663697a90722db48e0a3225049126 (patch) | |
tree | 5a3456c90cce46f6c3ff7ad54221f75ef0b8deef /fetch.sh | |
parent | c4da5e91d0533b647b9a043e02490f1886c1da0f (diff) | |
download | git-sonar-ff5c7a2af90663697a90722db48e0a3225049126.tar.gz git-sonar-ff5c7a2af90663697a90722db48e0a3225049126.zip |
Refactor fetch.sh
Some code is restructured to remove the need for this additional
entry-point.
Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to 'fetch.sh')
-rwxr-xr-x | fetch.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/fetch.sh b/fetch.sh deleted file mode 100755 index eed6960..0000000 --- a/fetch.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash - -if [[ "$OSTYPE" == *darwin* ]]; then - READLINK_CMD='greadlink' -else - READLINK_CMD='readlink' -fi - -dot="$(cd "$(dirname "$([ -L "$0" ] && $READLINK_CMD -f "$0" || echo "$0")")" || exit; pwd)" - -source "$dot/sonar-base.sh" - -fetch; |