File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed
Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -eu
3+
4+ # macOS does not have realpath and readlink does not have -f option, so do this instead:
5+ script_dir=$( cd " $( dirname " $0 " ) " ; pwd -P )
6+ cd " ${script_dir} /.." # move to project root dir
7+
38args=" $@ "
49buildDir=${PWD} /build-artifacts
510
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -euo pipefail
33
4+ # macOS does not have realpath and readlink does not have -f option, so do this instead:
5+ script_dir=$( cd " $( dirname " $0 " ) " ; pwd -P )
6+ cd " ${script_dir} /.." # move to project root dir
7+
48args=" $@ "
59
610bash <( curl -s https://raw.githubusercontent.com/objectbox/objectbox-c/main/download.sh) --quiet --sync 0.15.0
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -eu
33
4+ # macOS does not have realpath and readlink does not have -f option, so do this instead:
5+ script_dir=$( cd " $( dirname " $0 " ) " ; pwd -P )
6+ cd " ${script_dir} /.." # move to project root dir
7+
48unformatted_files=$( gofmt -l .)
59if [[ ${unformatted_files} ]]; then
610 echo " Some files are not formatted properly. You can use \` gofmt -l -w .\` to fix them:"
You can’t perform that action at this time.
0 commit comments