Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add bash script #56

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 75 additions & 0 deletions scalafmt.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
#!/usr/bin/env bash

# This is the launcher script of scalafmt-native-image (https://github.com/VirtusLab/scalafmt-native-image).
# This script downloads and runs scalafmt-native-image version set by SCALAFMT_VERSION below.
#
# Download the latest version of this script at https://github.com/VirtusLab/scalafmt-native-image/raw/main/scalafmt.sh

set -eu

DEFAULT_SCALAFMT_VERSION="3.8.3"

SCALAFMT_VERSION=""
if test -e .scalafmt.conf; then
SCALAFMT_VERSION="$(cat .scalafmt.conf | grep '^version\s*=\s*"[0-9.A-Z-]*"$' | sed 's/^version[ \t]*=[ \t]*"\([0-9.A-Z-]*\)"$/\1/g')"
fi

if [ "$SCALAFMT_VERSION" == "" ]; then
SCALAFMT_VERSION="$DEFAULT_SCALAFMT_VERSION"
if test -e .scalafmt.conf; then
echo "Warning: no scalafmt version found in .scalafmt.conf, using $SCALAFMT_VERSION" 1>&2
else
echo "Warning: no .scalafmt.conf found, using scalafmt version $SCALAFMT_VERSION" 1>&2
fi
fi

GH_ORG="VirtusLab"
GH_NAME="scalafmt-native-image"

TAG="v$SCALAFMT_VERSION"

if [ "$(expr substr $(uname -s) 1 5 2>/dev/null)" == "Linux" ]; then
arch=$(uname -m)
if [[ "$arch" == "aarch64" ]] || [[ "$arch" == "x86_64" ]]; then
SCALAFMT_URL="https://github.com/$GH_ORG/$GH_NAME/releases/download/$TAG/scalafmt-${arch}-pc-linux.gz"
else
echo "scalafmt-native-image is not supported on $arch" 1>&2
exit 2
fi
CACHE_BASE="$HOME/.cache/coursier/v1"
elif [ "$(uname)" == "Darwin" ]; then
arch=$(uname -m)
CACHE_BASE="$HOME/Library/Caches/Coursier/v1"
if [[ "$arch" == "x86_64" ]]; then
SCALAFMT_URL="https://github.com/$GH_ORG/$GH_NAME/releases/download/$TAG/scalafmt-x86_64-apple-darwin.gz"
elif [[ "$arch" == "arm64" ]]; then
SCALAFMT_URL="https://github.com/$GH_ORG/$GH_NAME/releases/download/$TAG/scalafmt-aarch64-apple-darwin.gz"
else
echo "scalafmt-native-image is not supported on $arch" 1>&2
exit 2
fi
else
echo "This standalone scalafmt-native-image launcher is supported only in Linux and macOS." 1>&2
exit 1
fi

CACHE_DEST="$CACHE_BASE/$(echo "$SCALAFMT_URL" | sed 's@://@/@')"
SCALAFMT_BIN_PATH=${CACHE_DEST%.gz}

if [ ! -f "$CACHE_DEST" ]; then
mkdir -p "$(dirname "$CACHE_DEST")"
TMP_DEST="$CACHE_DEST.tmp-setup"
echo "Downloading $SCALAFMT_URL" 1>&2
curl -fLo "$TMP_DEST" "$SCALAFMT_URL"
mv "$TMP_DEST" "$CACHE_DEST"
fi

if [ ! -f "$SCALAFMT_BIN_PATH" ]; then
gunzip -k "$CACHE_DEST"
fi

if [ ! -x "$SCALAFMT_BIN_PATH" ]; then
chmod +x "$SCALAFMT_BIN_PATH"
fi

exec "$SCALAFMT_BIN_PATH" "$@"
Loading