14 lines
231 B
Bash
14 lines
231 B
Bash
#!/bin/bash
|
|
|
|
nohup toolkit gitea fuzzy-clone update >/dev/null 2>&1 &
|
|
|
|
choice=$(toolkit gitea fuzzy-clone --print-dest)
|
|
if [[ $? -ne 0 ]]; then
|
|
return $?
|
|
fi
|
|
|
|
target=$(echo "$choice" | tail --lines 1)
|
|
echo "$target"
|
|
|
|
cd "$target"
|