Skip to content

Commit 48ff8f2

Browse files
John HoffmanJohn Hoffman
authored andcommitted
Merge branch 'v1.0' into feature/sparse-bls-gpu
2 parents ae5246f + 4b22075 commit 48ff8f2

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/setup-remote.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ source .runpod.env
1414

1515
# Build SSH connection string
1616
SSH_OPTS="-p ${RUNPOD_SSH_PORT}"
17-
if [ ! -z "${RUNPOD_SSH_KEY}" ]; then
17+
if [ -n "${RUNPOD_SSH_KEY}" ]; then
1818
SSH_OPTS="${SSH_OPTS} -i ${RUNPOD_SSH_KEY}"
1919
fi
2020

scripts/sync-to-runpod.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ source .runpod.env
1414

1515
# Build SSH connection string
1616
SSH_OPTS="-p ${RUNPOD_SSH_PORT}"
17-
if [ ! -z "${RUNPOD_SSH_KEY}" ]; then
17+
if [ -n "${RUNPOD_SSH_KEY}" ]; then
1818
SSH_OPTS="${SSH_OPTS} -i ${RUNPOD_SSH_KEY}"
1919
fi
2020

scripts/test-remote.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ source .runpod.env
1414

1515
# Build SSH connection string
1616
SSH_OPTS="-p ${RUNPOD_SSH_PORT}"
17-
if [ ! -z "${RUNPOD_SSH_KEY}" ]; then
17+
if [ -n "${RUNPOD_SSH_KEY}" ]; then
1818
SSH_OPTS="${SSH_OPTS} -i ${RUNPOD_SSH_KEY}"
1919
fi
2020

0 commit comments

Comments
 (0)