fix: escaped username in remote_run script

This commit is contained in:
HTGAzureX1212
2025-07-21 19:09:21 +08:00
parent e3f2c44dd9
commit df3b94a83a

View File

@@ -13,7 +13,7 @@ while getopts "h:" opt; do
esac
done
target_folder=/tmp/zynq-\$USER
target_folder="/tmp/zynq-$USER"
ssh $target_host "mkdir -p $target_folder"
rsync openocd/* $target_host:$target_folder