File tree 3 files changed +13
-0
lines changed
3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -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
+
3
8
args=" $@ "
4
9
buildDir=${PWD} /build-artifacts
5
10
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -euo pipefail
3
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
+
4
8
args=" $@ "
5
9
6
10
bash <( 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 1
1
#! /usr/bin/env bash
2
2
set -eu
3
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
+
4
8
unformatted_files=$( gofmt -l .)
5
9
if [[ ${unformatted_files} ]]; then
6
10
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