2023-07-24 12:41:43 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-03-08 14:35:40 +01:00
|
|
|
|
2024-03-09 01:44:18 +01:00
|
|
|
( nohup fuzzy-clone cache update >/dev/null 2>&1 & )
|
2023-07-24 12:41:43 +02:00
|
|
|
|
2024-03-09 01:44:18 +01:00
|
|
|
choice=$(fuzzy-clone)
|
2023-07-24 12:41:43 +02:00
|
|
|
if [[ $? -ne 0 ]]; then
|
|
|
|
return $?
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd "$(echo "$choice" | tail --lines 1)"
|