Reviewed By: bhamodi Differential Revision: D33331422 fbshipit-source-id: 016e8dcc0c0c7f1fc353a348b54fda0d5e2ddc01
17 lines
612 B
Bash
Executable File
17 lines
612 B
Bash
Executable File
#!/bin/bash -xe
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
# try to install with wget
|
|
command -v wget &>/dev/null && wget -O /tmp/retry "https://github.com/moul/retry/releases/download/v0.5.0/retry_$(uname -s)_$(uname -m)" || true
|
|
|
|
# try to install with curl
|
|
if [ ! -f /tmp/retry ]; then
|
|
command -v curl &>/dev/null && curl -L -o /tmp/retry "https://github.com/moul/retry/releases/download/v0.5.0/retry_$(uname -s)_$(uname -m)"
|
|
fi
|
|
|
|
chmod +x /tmp/retry
|
|
/tmp/retry --version
|