Fix git clone syntax in projects directory setup
This commit is contained in:
parent
96500223f5
commit
0113061bcc
@ -557,7 +557,7 @@ done
|
|||||||
|
|
||||||
echo "Setting up Projects folder..."
|
echo "Setting up Projects folder..."
|
||||||
|
|
||||||
# Ensure ${HOME}/Projects exists and set it as the working directory
|
# Ensure ${HOME}/Projects exists
|
||||||
PROJECTS_DIR=${HOME}/Projects
|
PROJECTS_DIR=${HOME}/Projects
|
||||||
if [ ! -d ${PROJECTS_DIR} ]; then
|
if [ ! -d ${PROJECTS_DIR} ]; then
|
||||||
mkdir ${PROJECTS_DIR}
|
mkdir ${PROJECTS_DIR}
|
||||||
@ -567,7 +567,7 @@ fi
|
|||||||
# Perform a blobless clone of all public repos at git.tty.dog
|
# Perform a blobless clone of all public repos at git.tty.dog
|
||||||
API_URL="https://git.tty.dog/api/v1/repos/search"
|
API_URL="https://git.tty.dog/api/v1/repos/search"
|
||||||
for CLONE_URL in $(curl -s "${API_URL}?uid=1" | jq -r ".data.[].clone_url"); do
|
for CLONE_URL in $(curl -s "${API_URL}?uid=1" | jq -r ".data.[].clone_url"); do
|
||||||
git clone --no-checkout --filter=blob:none "${CLONE_URL}" ${PROJECTS_DIR}
|
git -C ${PROJECTS_DIR} clone --no-checkout --filter=blob:none "${CLONE_URL}"
|
||||||
done
|
done
|
||||||
|
|
||||||
########################################
|
########################################
|
||||||
|
Loading…
Reference in New Issue
Block a user