Skip to content

Commit

Permalink
Save
Browse files Browse the repository at this point in the history
  • Loading branch information
anishathalye committed Dec 27, 2024
1 parent 382082e commit 88a96c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ setup_env() {
export [email protected]
export GIT_COMMITTER_NAME='Committer'
git config --global init.defaultBranch master
local RANDOM_STR="$(< /dev/urandom tr -dc A-Za-z0-9 | head -c${1:-16})"
local RANDOM_STR=$(python -c "import random, string; print(''.join(random.choices(string.ascii_letters, k=16)))")
echo "RANDOM_STR = ${RANDOM_STR}"
REPO_DIR="git-remote-dropbox-test/${RANDOM_STR}"
TMP_DIR=$(mktemp -d)
Expand Down

0 comments on commit 88a96c1

Please sign in to comment.