diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-07-12 14:56:14 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-07-12 14:56:14 +0200 |
commit | a4c01b0831d11775d46d1dca00b528397cbf4b03 (patch) | |
tree | 4b3ef69cb688a9db0b4d7b527f4ffa90dd5ceb2e /bin/common/gt | |
parent | cc58700ad2483cd7ff8c9b56c0a77fc492808c01 (diff) | |
parent | 320b7ed28d5b142d208f03a3e2f851bec9e1a678 (diff) |
Merge branch 'main' of db:dotfiles
Diffstat (limited to 'bin/common/gt')
-rwxr-xr-x | bin/common/gt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/common/gt b/bin/common/gt index 477adfc..1965ed1 100755 --- a/bin/common/gt +++ b/bin/common/gt @@ -85,7 +85,7 @@ while getopts ":a:c:f:lsheu" opt; do while read -r repo remote_url; do gt-sync "$repo" "$remote_url" done <"$repos" - fi | awk -F ':' '/x$/ {print $1}' | + fi | awk -F ':' '/x$/ {print $1}' | sed "s@~@$HOME@" | if [ "$parallel" ]; then parallel gt-cmd {} pull else @@ -103,5 +103,6 @@ while getopts ":a:c:f:lsheu" opt; do ;; esac done +>&2 printf '*: %s\n' "$*" # eval "herbe $(status | sed 's/"/\"/g;s/.*/"&"/' | tr '\n' ' ')" |