Skip to content

Commit 4aab7b2

Browse files
committed
trying to figure out why yugabyte install fails
1 parent d66e684 commit 4aab7b2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

clone-from-dark-repo.sh

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/usr/bin/env bash
22

3+
# run like
4+
# ./clone-from-dark-repo.sh "../dark"
5+
36
set -euo pipefail
47

58
set -x

scripts/installers/install-yugabyte

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ FILENAME=$(basename $URL)
2929
DIR=/home/dark/yugabyte
3030
mkdir -p $DIR
3131
cd $DIR
32-
curl -sSL -o $FILENAME $URL
32+
curl -sSL -f -o $FILENAME $URL
33+
file "$FILENAME"
3334
tar xvf $FILENAME --strip-components=1
3435
rm $FILENAME
3536
./bin/post_install.sh

0 commit comments

Comments
 (0)