We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 121f170 commit 27d4537Copy full SHA for 27d4537
1 file changed
src/git-sync.sh
@@ -194,7 +194,11 @@ copy_carry_files() {
194
cp -a "$from_path" "$to_path"
195
fi
196
if [ "$has_explicit_dest" = true ]; then
197
- carried_names+=("$src_path -> $dest_path")
+ if [ "$direction" = "to_work" ]; then
198
+ carried_names+=("$src_path -> $dest_path")
199
+ else
200
+ carried_names+=("$dest_path -> $src_path")
201
+ fi
202
else
203
carried_names+=("$src_path")
204
0 commit comments